forked from andriiheonia/hull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.24 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
{
"name": "hull.js",
"version": "1.0.3",
"description": "JavaScript library that builds concave hulls (shapes) by the set of points",
"homepage": "https://github.com/AndriiHeonia/hull",
"keywords": [
"geometry",
"concave-hull",
"math",
"alpha-shape",
"algorithm"
],
"author": "Andrii Heonia <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/AndriiHeonia/hull.git"
},
"main": "./src/hull.js",
"devDependencies": {
"nodemon": "~1.18.0",
"mocha": "~6.0.2",
"jshint": "~2.10.2",
"browserify": "~16.2.3"
},
"scripts": {
"watch": "./node_modules/nodemon/bin/nodemon.js --watch src --exec \"./node_modules/browserify/bin/cmd.js ./src/hull.js --standalone hull > ./dist/hull.js\"",
"test": "./node_modules/jshint/bin/jshint src/intersect.js && ./node_modules/jshint/bin/jshint src/grid.js && ./node_modules/jshint/bin/jshint src/hull.js && ./node_modules/.bin/mocha -R spec && ./node_modules/browserify/bin/cmd.js ./src/hull.js --standalone hull > ./dist/hull.js"
},
"jshintConfig": {
"forin": false,
"node": true,
"esversion": 6
},
"license": "BSD"
}