-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "natninter",
"version": "0.1.2",
"description": "Natural neighbor interpolation",
"repository": "jonathanlurie/natninter",
"entry": "src/main.js",
"main": "dist/natninter.umd.js",
"cjs": "dist/natninter.cjs.js",
"umd": "dist/natninter.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"dev": "serve . & rollup -w -c rollup.config.dev.js",
"dochtml": "documentation build src/** -f html -o ./doc/",
"doc": "documentation build src/** -f md > documentation.md"
},
"author": "Jonathan Lurie",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"documentation": "^5.4.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"serve": "^6.3.1"
},
"dependencies": {
"area-polygon": "^1.0.1",
"point-in-polygon": "^1.0.1",
"voronoi": "^1.0.0"
}
}