-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "@railgun-community/curve25519-scalarmult-neon",
"version": "0.1.11",
"description": "Node.js addon for Curve25519 scalar multiplication written in Rust",
"author": "RAILGUN Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Railgun-Community/curve25519-scalarmult-neon.git"
},
"homepage": "https://github.com/Railgun-Community/curve25519-scalarmult-neon#readme",
"bugs": {
"url": "https://github.com/Railgun-Community/curve25519-scalarmult-neon/issues"
},
"main": "index.js",
"files": [
"index.js",
"postinstall.js",
"src/*",
"prebuilds/*",
"Cargo.lock",
"Cargo.toml"
],
"scripts": {
"build": "cargo-cp-artifact2 --npm cdylib index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"postinstall": "node postinstall.js",
"test": "cargo test && npm run build-debug && tape test/*.js"
},
"dependencies": {
"cargo-cp-artifact2": "^0.1"
},
"devDependencies": {
"tape": "^5.6.1"
}
}