-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "deno-vm",
"version": "0.12.0",
"description": "A VM module that provides a secure runtime environment via Deno.",
"main": "./dist/cjs/index.js",
"types": "./dist/typings/index.d.ts",
"module": "./dist/esm/index.js",
"scripts": {
"build": "npm run clean && rollup -c",
"watch": "npm run clean && rollup -cw",
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "gulp clean",
"build:docs": "typedoc --out ./docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casual-simulation/node-deno-vm.git"
},
"keywords": [
"vm",
"sandbox",
"jail",
"worker",
"web worker",
"deno"
],
"author": "Kallyn Gowdy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/casual-simulation/node-deno-vm/issues"
},
"homepage": "https://github.com/casual-simulation/node-deno-vm#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/ws": "^7.2.6",
"@types/base64-js": "1.2.5",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"jest": "^26.1.0",
"rollup": "^2.22.1",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-watch": "^4.3.1",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"tslib": "2.0.0",
"gulp": "^4.0.0",
"del": "^3.0.0",
"typedoc": "^0.17.8",
"ps-list": "7.2.0"
},
"dependencies": {
"ws": "^7.5.9",
"base64-js": "1.5.1"
},
"files": [
"dist/*",
"src/*",
"deno/*",
"LICENSE",
"README.md"
],
"engines": {
"node": ">= 12"
}
}