-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "cirque",
"version": "0.2.0",
"description": "Utilities for negotiating between circles and paths in SVG",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "babel src -d dist",
"watch": "babel -w src -d dist",
"prepublish": "npm run build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/two-n/cirque.git"
},
"homepage": "https://github.com/two-n/cirque",
"bugs": "https://github.com/two-n/cirque/issues",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign",
"transform-object-rest-spread"
]
},
"dependencies": {
"bezier-js": "^2.2.2",
"d3-array": "^1.1.1",
"d3-force": "^1.0.6",
"d3-geo": "^1.6.3",
"d3-interpolate": "^1.1.4",
"d3-polygon": "^1.0.3",
"d3-scale": "^1.0.5"
}
}