-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 895 Bytes
/
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
{
"name": "wasm-marching-squares",
"version": "1.0.2",
"description": "A WebAssembly library for generating isolines and isobands in the browser via the marching squares algorithm.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "cd test && ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zbennett10/wasm-marching-squares.git"
},
"keywords": [
"marching-squares",
"wasm"
],
"author": "Zachary Bennett",
"license": "MIT",
"bugs": {
"url": "https://github.com/zbennett10/wasm-marching-squares/issues"
},
"homepage": "https://github.com/zbennett10/wasm-marching-squares#readme",
"browser": { "fs": false, "os": false, "path": false, "crypto": false, "buffer": false, "console-browserify": false, "process/browser": false }
}