-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
38 lines (38 loc) · 934 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
{
"name": "sandbox",
"version": "2.0.0-alpha5",
"description": "A nifty JavaScript sandbox.",
"main": "index.js",
"files": [
"index.js",
"index.node",
"install.js",
"platform-target.js"
],
"scripts": {
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"postinstall": "node ./install.js",
"test": "mocha"
},
"author": "Gianni Chiappetta <[email protected]>",
"license": "ISC",
"devDependencies": {
"cargo-cp-artifact": "^0.1",
"mocha": "^9.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gf3/sandbox.git"
},
"keywords": [
"javascript",
"sandbox",
"eval"
],
"bugs": {
"url": "https://github.com/gf3/sandbox/issues"
},
"homepage": "https://github.com/gf3/sandbox#readme"
}