forked from veltman/flubber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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": "flubber",
"version": "0.4.2",
"description": "Best-guess methods for smoothly interpolating and animating between shapes.",
"main": "build/flubber.min.js",
"browser": "build/flubber.min.js",
"scripts": {
"test": "babel-tape-runner 'test/**-test.js'",
"pretest": "rm -rf build && mkdir build && rollup --config rollup.config.js",
"build": "npm run pretest && uglifyjs -m -c -- build/flubber.js > build/flubber.min.js"
},
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/veltman/flubber.git"
},
"keywords": ["shape", "morph", "tween", "svg", "animation", "triangulation"],
"author": "Noah Veltman (@veltman)",
"license": "MIT",
"bugs": {
"url": "https://github.com/veltman/flubber/issues"
},
"homepage": "https://github.com/veltman/flubber#readme",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.4.0",
"babel-tape-runner": "^2.0.1",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^2.1.1",
"tape": "^4.6.3",
"uglify-js": "^2.8.20"
},
"dependencies": {
"d3-array": "^1.2.0",
"d3-polygon": "^1.0.3",
"earcut": "^2.1.1",
"svg-path-properties": "^0.2.1",
"svgpath": "^2.2.1",
"topojson-client": "^3.0.0"
},
"babel": {
"presets": ["env"],
"plugins": ["add-module-exports"]
}
}