-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "marchingsquares",
"description": "MarchingSquaresJS - An implementation of the Marching Squares algorithm featuring Isocontour and Isoband computation.",
"version": "1.3.3",
"author": "Ronny Lorenz <[email protected]>",
"contributors": [
{"name": "Stefano Borghi"},
{"name": "Peter Kerpedjiev"}
],
"license": "AGPL-3.0",
"main": "./dist/marchingsquares.js",
"module": "./dist/marchingsquares-esm.js",
"directories": {
"example": "./example",
"dist": "./dist"
},
"scripts": {
"lint": "eslint --fix src/**",
"build": "rollup -c",
"pretest": "rollup -c rollup.config.test.js",
"test": "node ./test/test.js"
},
"homepage": "https://github.com/RaumZeit/MarchingSquares.js/blob/master/README.md",
"repository": {
"type": "git",
"url": "git://github.com/RaumZeit/MarchingSquares.js.git"
},
"bugs": {
"url": "https://github.com/RaumZeit/MarchingSquares.js/issues"
},
"keywords": [
"marchingsquares",
"marching",
"squares",
"isocontour",
"isoband",
"isoline"
],
"devDependencies": {
"eslint": "5.0.1",
"load-json-file": "^2.0.0",
"rollup": "^0.60.7",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-uglify": "^4.0.0",
"tape": "^4.9.1"
}
}