-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.04 KB
/
package.json
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
{
"name": "jsonstat-euro",
"version": "2.1.1",
"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.js"
},
"dependencies": {
"jsonstat-toolkit": "^1.4.2"
},
"devDependencies": {
"rollup": "^1.27.1",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"rollup-plugin-terser": "^5.1.2",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"license": "Apache-2.0",
"files": [
"*.@(js|cjs|mjs)"
]
}