-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "d3-symbol-extra",
"version": "0.1.0",
"description": "Additional D3 symbol types.",
"keywords": [
"d3",
"d3-module",
"d3-shape",
"symbol",
"triangle",
"diamond",
"pentagon",
"hexagon",
"octagon",
"cross",
"x"
],
"license": "BSD-3-Clause",
"main": "build/d3-symbol-extra.js",
"jsnext:main": "index",
"homepage": "https://github.com/YellowTugboat/d3-symbol-extra",
"repository": {
"type": "git",
"url": "https://github.com/YellowTugboat/d3-symbol-extra.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -f umd -n d3 -o build/d3-symbol-extra.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/d3-symbol-extra.js -c -m -o build/d3-symbol-extra.min.js",
"postpublish": "zip -j build/d3-symbol-extra.zip -- LICENSE README.md build/d3-symbol-extra.js build/d3-symbol-extra.min.js"
},
"devDependencies": {
"d3-polygon": "1",
"d3-shape": "1",
"rollup": "0.34",
"tape": "4",
"uglify-js": "2"
}
}