-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pqclean",
"version": "0.7.0",
"description": "Node.js bindings for all post-quantum implementations included in PQClean",
"main": "index.js",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"mceliece-nist": "^4.0.0",
"tape": "^5.5.3"
},
"scripts": {
"install": "node scripts/install.mjs",
"test": "node test/runner.mjs",
"prepack": "npm run regenerate-native && npm run build-wasm",
"regenerate-native": "node scripts/regenerate-native.mjs",
"build-native": "node-gyp rebuild -j max",
"build-wasm": "node scripts/build-wasm.mjs",
"build-web": "node scripts/build-web.mjs",
"test-web": "cd web/test && npm install && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tniessen/node-pqclean.git"
},
"keywords": [
"pqclean",
"pqc",
"quantum",
"crypto",
"cryptography",
"asymmetric",
"kem",
"key",
"exchange"
],
"author": "Tobias Nießen <[email protected]>",
"license": "MIT",
"gypfile": true,
"bugs": {
"url": "https://github.com/tniessen/node-pqclean/issues"
},
"homepage": "https://github.com/tniessen/node-pqclean#readme",
"files": [
"README.md",
"binding.gyp",
"deps/PQClean/common/**",
"deps/PQClean/crypto_kem/*/clean/**",
"deps/PQClean/crypto_sign/*/clean/**",
"index.js",
"native/",
"package.json",
"scripts/install.mjs",
"wasm/"
]
}