-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 914 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": "sphincs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "node --max-old-space-size=4096 ./node_modules/.bin/mocha",
"install": "prebuild-install || npm run build",
"build": "node-gyp rebuild",
"preinstall": "node checkOpenSSL.js "
},
"binary": {
"module_name": "sphincs",
"module_path": "./build/Release/",
"remote_path": "./{name}/v{version}/",
"package_name": "{module_name}-v{version}-napi-v{napi_build_version}-{platform}-{arch}.tar.gz",
"host": "https://github.com/mostafa18181/sphincsplus/releases/tag/v1.0.0",
"napi_versions": [
3,
4,
6,
7,
8
]
},
"devDependencies": {
"node-addon-api": "^8.1.0",
"node-gyp": "^10.2.0",
"prebuild": "^13.0.1",
"prebuild-install": "^7.1.2"
},
"dependencies": {
"chai": "^4.5.0",
"mocha": "^9.2.2",
"node-forge": "^1.3.1"
}
}