-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "d3-worker",
"version": "1.0.3",
"description": "Render D3 charts inside background process (worker)",
"main": "index.js",
"scripts": {
"test": "rollup -c rollup.config.test.js",
"build": "rollup -c rollup.config.worker.js && rollup -c rollup.config.page.js",
"uglify": "uglifyjs dist/d3-worker.js -cmo dist/d3-worker.min.js && uglifyjs dist/d3-worker-wrapper.js -cmo dist/d3-worker-wrapper.min.js && uglifyjs dist/test_render.js -cmo dist/test_render.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptytb/d3-worker.git"
},
"keywords": [
"d3",
"worker",
"render",
"chart",
"visualization"
],
"author": "Ilya Pronin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ptytb/d3-worker/issues"
},
"homepage": "https://github.com/ptytb/d3-worker#readme",
"dependencies": {
"d3": "^4.12.0",
"nodom": "ptytb/nodom",
"spin.js": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2016": "^6.24.1",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-es": "^3.2.0"
}
}