-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "@walkerserver/server",
"version": "0.0.4",
"description": "A fast, easy to use HTTP server",
"main": "index.js",
"repository": "[email protected]:JackThomson2/walker.git",
"types": "index.d.ts",
"keywords": [
"Server",
"HTTP",
"Rust",
"node-addon",
"node-addon-api"
],
"napi": {
"name": "server",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc"
]
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.11.4",
"ava": "^4.3.3",
"axios": "^1.1.3",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "npm-run-all -s test:*",
"test:main": "ava -T 60s ./__test__/index.spec.mjs",
"test:stress": "ava -T 60s ./__test__/stress.spec.mjs",
"test:saturate": "ava -T 600s ./__test__/saturation.spec.mjs",
"version": "napi version"
}
}