forked from fulcrumapp/v8-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.7",
"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 <[email protected]> (http://github.com/zhm)",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/v8-sandbox.git"
},
"devDependencies": {
"@types/async": "^3.0.8",
"@types/lodash": "^4.14.149",
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.3",
"@types/request": "^2.48.8",
"@types/signal-exit": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^1.2.1",
"bindings": "^1.5.0",
"lodash": "^4.17.21",
"nan": "^2.14.0",
"node-gyp": "^9.0.0",
"signal-exit": "^3.0.2"
},
"keywords": [
"sandbox",
"v8",
"js",
"javascript"
]
}