package.json
932 Bytes
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
{
"name": "node-abi",
"version": "3.5.0",
"description": "Get the Node ABI for a given target and runtime, and vice versa.",
"main": "index.js",
"scripts": {
"semantic-release": "semantic-release",
"test": "tape test/index.js",
"update-abi-registry": "node --unhandled-rejections=strict scripts/update-abi-registry.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lgeiger/node-abi.git"
},
"keywords": [
"node",
"electron",
"node_module_version",
"abi",
"v8"
],
"author": "Lukas Geiger",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgeiger/node-abi/issues"
},
"homepage": "https://github.com/lgeiger/node-abi#readme",
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^2.0.0",
"got": "^11.8.2",
"tape": "^5.3.1"
},
"dependencies": {
"semver": "^7.3.5"
},
"engines": {
"node": ">=10"
}
}