-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 953 Bytes
/
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
{
"name": "qjsc",
"version": "0.3.0",
"description": "Node.js addon for the Quickjs compiler",
"main": "index.js",
"bin": {
"qjsc": "./bin/qjsc.js"
},
"scripts": {
"install": "node install.js",
"test": "jasmine test.js",
"build": "node-gyp rebuild --verbose",
"build:pre": "prebuildify --napi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openkraken/node-qjsc.git"
},
"author": "The Kraken Team",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/openkraken/node-qjsc/issues"
},
"homepage": "https://github.com/openkraken/node-qjsc#readme",
"dependencies": {
"bindings": "^1.5.0",
"commander": "^8.2.0",
"nan": "^2.15.0",
"node-addon-api": "^4.1.0",
"node-gyp": "^9.0.0",
"node-gyp-build": "^4.3.0"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"jasmine": "^3.9.0",
"prebuildify": "^5.0.0"
}
}