-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1014 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
32
33
34
35
36
{
"name": "multimath",
"description": "Core to create fast image math in WebAssembly and JS.",
"version": "2.0.0",
"keywords": [
"webassembly",
"math",
"image",
"multimath"
],
"license": "MIT",
"repository": "nodeca/multimath",
"scripts": {
"build:llvm": "docker build -t multimath_llvm -f ./support/Dockerfile.llvm ./support && docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) multimath_llvm ./support/compile-llvm.sh",
"build:emsdk": "docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk:2.0.20 ./support/compile-emsdk.sh",
"build": "npm run build:emsdk",
"test": "eslint . && mocha",
"coverage": "nyc mocha && nyc report --reporter html"
},
"files": [
"lib/",
"index.js"
],
"dependencies": {
"glur": "^1.1.2",
"object-assign": "^4.1.1"
},
"devDependencies": {
"benchmark": "^2.1.0",
"eslint": "^6.0.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2"
}
}