-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1022 Bytes
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1022 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
44
45
46
47
48
49
50
51
{
"name": "jsonstat-suite",
"version": "4.0.1",
"description": "A library of high level functions built on top of the JSON-stat JavaScript Toolkit (JJT)",
"homepage": "https://jsonstat.com",
"keywords": [
"util",
"jsonstat",
"jsonstat-toolkit",
"jsonstat-utils",
"stats",
"data",
"cube",
"opendata",
"csv",
"table",
"join",
"sdmx",
"sdmx-json"
],
"author": {
"name": "Xavier Badosa",
"url": "https://xavierbadosa.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsonstat/suite.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": "^2.2.2"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^1.0.0",
"rollup": "^4.59.0"
},
"license": "Apache-2.0",
"files": [
"*.@(js|cjs|mjs)"
]
}