-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.06 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "jsonstat-euro",
"version": "3.0.0",
"type": "module",
"description": "A library to deal with Eurostat's JSON-stat API",
"homepage": "https://jsonstat.com",
"keywords": [
"eurostat",
"jsonstat",
"stats",
"data",
"cube",
"opendata",
"table",
"europe",
"eu"
],
"author": {
"name": "Xavier Badosa",
"url": "https://xavierbadosa.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jsonstat/euro.git"
},
"main": "main.cjs",
"module": "module.mjs",
"browser": "import.mjs",
"unpkg": "iife.js",
"jsdelivr": "iife.js",
"scripts": {
"build": "rollup -c",
"test": "node test/nodejs.cjs"
},
"dependencies": {
"jsonstat-toolkit": "^2.2.0"
},
"devDependencies": {
"rollup": "4.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"license": "Apache-2.0",
"files": [
"*.@(js|cjs|mjs)"
]
}