-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "subunit",
"version": "v0.5.4",
"private": true,
"description": "D3 style selections in WebGL, select into a THREE.js scene graph",
"main": "index.js",
"keywords": [
"d3",
"webgl",
"threejs"
],
"scripts": {
"build": "rm -rf dist && mkdir dist && npm run build:lib && npm run build:min && npm run build:copy-files",
"build:lib": "rollup --config rollup.config.prd.js",
"build:min": "uglifyjs dist/subunit.js -c -m -o dist/subunit.min.js",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"start": "rm -rf dist && mkdir dist && rollup -c rollup.config.dev.js --watch",
"lint": "eslint src --quiet --cache && echo \"eslint: no lint errors\""
},
"repository": {
"type": "git",
"url": "https://github.com/sghall/subunit.git"
},
"author": "Steve Hall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sghall/subunit/issues"
},
"homepage": "https://github.com/sghall/subunit",
"peerDependencies": {
"three": ">=0.85"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"d3": "^4.9.1",
"eslint": "3",
"fs-extra": "^3.0.1",
"jasmine-core": "^2.6.3",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-systemjs": "^0.16.0",
"rollup": "0.41",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-serve": "^0.3.0",
"rollup-watch": "^3.2.2",
"systemjs": "^0.20.13",
"systemjs-plugin-babel": "0.0.21",
"three": "^0.85.2",
"uglify-js": "^3.0.26"
},
"dependencies": {
"d3-interpolate": "^1.1.5",
"d3-selection": "^1.1.0",
"d3-timer": "^1.0.5",
"d3-transition": "^1.1.0"
}
}