-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.5 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": "v8-sandbox",
"version": "3.2.12",
"description": "V8 Sandbox",
"homepage": "http://github.com/fulcrumapp/v8-sandbox",
"main": "dist/index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp configure build && tsc",
"build-debug": "node-gyp --debug configure build && tsc",
"rebuild": "node-gyp configure rebuild",
"test": "TS_NODE_IGNORE='node_modules,dist' mocha -r ts-node/register test/index.ts",
"clean": "rm -rf dist build",
"lint": "eslint 'lib/**/*.ts'",
"typecheck": "tsc -b"
},
"author": "Zac McCormick <zac.mccormick@gmail.com> (http://github.com/zhm)",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/v8-sandbox.git"
},
"devDependencies": {
"@types/async": "^3.2.22",
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/request": "^2.48.11",
"@types/signal-exit": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^9.1.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^1.6.0",
"bindings": "^1.5.0",
"lodash": "^4.17.21",
"nan": "^2.18.0",
"node-gyp": "^10.1.0",
"signal-exit": "^4.1.0"
},
"keywords": [
"sandbox",
"v8",
"js",
"javascript"
]
}