-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.94 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@vizabi/core",
"version": "1.33.0",
"description": "Vizabi core (data layer)",
"main": "dist/Vizabi.js",
"type": "module",
"files": [
"dist/Vizabi.js",
"dist/Vizabi.js.map",
"dist/Dataframe.js",
"dist/Dataframe.js.map",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm test && npm run build",
"build": "npx rollup -c",
"start": "NODE_ENV=devserver rollup -c --watch",
"rollup": "rollup -c",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"debug": "node --experimental-vm-modules node_modules/.bin/jest --runInBand --watch --no-cache"
},
"author": {
"name": "Jasper Heeffer and others at Gapminder Foundation",
"url": "https://www.gapminder.org",
"email": "info@gapminder.org"
},
"contributors": [
{
"name": "Jasper",
"url": "https://github.com/jheeffer"
},
{
"name": "Angie",
"url": "https://github.com/angieskazka"
},
{
"name": "Dima",
"url": "https://github.com/dab2000"
},
{
"name": "Ola",
"url": "https://github.com/olarosling"
}
],
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/vizabi/core"
},
"bugs": {
"url": "https://github.com/vizabi/core/issues"
},
"homepage": "http://vizabi.org",
"peerDependencies": {
"mobx": "^5.15.7",
"d3": "^6.7.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"install-peers": "^1.0.3",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"mobx": "^5.15.7",
"mobx-formatters": "^1.0.2",
"mobx-utils": "^5.5.2",
"rollup": "^2.79.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-visualizer": "^5.5.2",
"@vizabi/reader-ddfcsv": "^4.0.1"
},
"serve": {
"content": "./dist",
"hot": false
}
}