-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 873 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 873 Bytes
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
{
"name": "jsonstat-toolkit",
"version": "2.2.2",
"description": "JSON-stat JavaScript Toolkit: a library to deal with JSON-stat responses.",
"homepage": "https://jsonstat.com",
"keywords": [
"jsonstat",
"toolkit",
"stats",
"data",
"cube",
"opendata"
],
"author": {
"name": "Xavier Badosa",
"url": "https://xavierbadosa.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsonstat/toolkit.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"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"rollup": "^4.59.0",
"@rollup/plugin-terser": "^0.4.4"
},
"overrides": {
"serialize-javascript": "^7.0.3"
},
"license": "Apache-2.0",
"files": [
"*.@(js|cjs|mjs)"
]
}