-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
32 lines (32 loc) · 1.15 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
{
"name": "d3-venn",
"version": "0.0.9",
"description": "a Venn Layout plugin for d3.js",
"keywords": [
"d3",
"venn",
"layout"
],
"license": "BSD-3-Clause",
"main": "build/d3-venn.js",
"jsnext:main": "index",
"homepage": "https://github.com/christophe-g/d3-venn",
"repository": {
"type": "git",
"url": "https://github.com/christophe-g/d3-venn.git"
},
"scripts": {
"pretest": "mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -u d3-venn -n d3_venn -o build/d3-venn.js -- build/bundle.js && cat ./end.js >> build/d3-venn.js",
"test": "faucet `find test -name '*-test.js'`",
"prepublish": "npm run test && uglifyjs build/d3-venn.js --drop_console true -c -m -o build/d3-venn.min.js && rm -f build/d3-venn.zip && zip -j build/d3-venn.zip -- LICENSE README.md build/d3-venn.js build/d3-venn.min.js"
},
"devDependencies": {
"faucet": "0.0",
"rollup": "0.20.5",
"tape": "4",
"uglify-js": "2"
},
"dependencies": {
"venn.js": "~0.2.4"
}
}