-
Notifications
You must be signed in to change notification settings - Fork 218
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "venn.js",
"version": "0.2.20",
"author": "Ben Frederickson <[email protected]> (http:/www.benfrederickson.com)",
"url": "https://github.com/benfred/venn.js/issues",
"devDependencies": {
"rollup": "^0.59.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"tape": "4",
"uglify-js": "3",
"jshint": "^2.8.0"
},
"description": "Area Proportional Venn and Euler Diagrams",
"main": "build/venn.js",
"jsnext:main": "index",
"files": [
"build",
"src",
"*.js"
],
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benfred/venn.js.git"
},
"keywords": [
"Venn",
"Euler"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/benfred/venn.js/issues"
},
"homepage": "https://github.com/benfred/venn.js",
"jshintConfig": {
"esnext": true
},
"scripts": {
"pretest": "rm -rf build && rollup -c && cp build/venn.js .",
"test": "jshint src/*.js && tape 'tests/**/*test.js'",
"prepublish": "npm run test && uglifyjs build/venn.js -c -m -o build/venn.min.js",
"postpublish": "zip -j build/venn.zip -- LICENSE README.md build/venn.js build/venn.min.js"
},
"dependencies": {
"fmin": "0.0.2",
"d3-selection": "^1.0.2",
"d3-transition": "^1.0.1"
}
}