-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "node-segfault-handler-rs",
"version": "1.1.2",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "node-segfault-handler-rs",
"triples": {
"additional": [
"aarch64-apple-darwin",
"universal-apple-darwin"
]
}
},
"license": "MIT",
"devDependencies": {
"@eggjs/tsconfig": "^1.3.3",
"@napi-rs/cli": "^2.18.4",
"@types/mocha": "^10.0.10",
"coffee": "^5.5.1",
"egg-bin": "^6.13.0",
"eslint": "^8.23.1",
"eslint-config-egg": "^12.0.0"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"universal": "napi universal",
"version": "napi version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/node-modules/node-segfault-handler-rs.git"
}
}