-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "iswasmfast",
"version": "0.0.13",
"description": "Performance comparison of WebAssembly, C++ Addon, and native implementations of various algorithms in Node.js.",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"configure": "node-gyp configure",
"build:node": "node-gyp rebuild --release",
"build:wasm": "emcc --bind -std=c++14 src/wasm.cpp -s WASM=1 -s SINGLE_FILE=1 -O3 -o src/wasm.js",
"benchmark": "node benchmark.js",
"test": "jest --env node"
},
"main": "index.js",
"keywords": [
"wasm",
"webassebly",
"c++",
"napi",
"addon",
"benchmark"
],
"repository": {
"type": "git",
"url": "https://github.com/zandaqo/iswasmfast.git"
},
"homepage": "https://github.com/zandaqo/iswasmfast#readme",
"bugs": {
"url": "https://github.com/zandaqo/iswasmfast/issues"
},
"author": "Maga D. Zandaqo <denelxan@gmail.com> (http://maga.name)",
"license": "MIT",
"dependencies": {
"node-addon-api": "^4.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"jest": "^27.0.4"
},
"engines": {
"node": ">=8.6.0"
},
"gypfile": true
}