-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "d3-3d",
"version": "1.0.0",
"description": "D3.js plugin for 3d visualization",
"keywords": [
"d3",
"d3-module",
"3D",
"d3-3d",
"projection",
"visualization"
],
"author": "Niekes (https://niekes.com)",
"license": "BSD-3-Clause",
"homepage": "https://github.com/niekes/d3-3d",
"repository": {
"type": "git",
"url": "git+https://github.com/niekes/d3-3d.git"
},
"type": "module",
"scripts": {
"pretest": "npm run build",
"build": "rm -rf build && mkdir build && rollup -f umd -n d3 -o build/d3-3d.js -- index.js",
"test": "c8 --reporter lcov tape ./tests/setup.js tests/**/*-test.js | tap-spec",
"coverage": "c8 tape ./tests/setup.js ./tests/**/*-test.js | tap-spec && c8 report",
"prepack": "npm run build && uglifyjs build/d3-3d.js -c -m -o build/d3-3d.min.js",
"postpublish": "zip -j build/d3-3d.zip -- LICENSE README.md build/d3-3d.js build/d3-3d.min.js"
},
"devDependencies": {
"browser-env": "^2.0.21",
"c8": "8.0.1",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"rollup": "4.9.0",
"tap-spec": "^2.2.2",
"tape": "5.7.2",
"uglify-js": "^3.13.1"
},
"bugs": {
"url": "https://github.com/niekes/d3-3d/issues"
},
"directories": {
"test": "test"
}
}