-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "mceliece-nist",
"version": "4.0.1",
"description": "Node.js bindings for the reference implementation of the McEliece KEM.",
"main": "index.js",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.1.0"
},
"devDependencies": {
"tape": "^5.5.3"
},
"scripts": {
"test": "node test",
"build-native": "node-gyp rebuild",
"install": "npm run build-native || echo Compilation failed. You can use the module, but native bindings will not be available.",
"build-wasm": "cd deps/mceliece && ./build-wasm",
"prepack": "npm run build-wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tniessen/node-mceliece-nist.git"
},
"keywords": [
"mceliece",
"pqc",
"quantum",
"crypto",
"cryptography",
"asymmetric",
"kem",
"key",
"exchange"
],
"author": "Tobias Nießen <tniessen@tnie.de>",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/tniessen/node-mceliece-nist/issues"
},
"homepage": "https://github.com/tniessen/node-mceliece-nist#readme",
"files": [
"README.md",
"binding.gyp",
"index.js",
"node_mceliece.cc",
"package.json",
"deps/mceliece",
"wasm/"
]
}