-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "simple-sandbox-daemon",
"version": "1.0.0",
"description": "A node daemon for simple-sandbox",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node lib/index.js -c config.json -v",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"author": "Sengxian",
"license": "ISC",
"dependencies": {
"@types/md5": "^2.1.33",
"class-transformer": "^0.3.1",
"command-line-args": "^5.1.1",
"deepcopy": "^2.0.0",
"fs-extra": "^8.1.0",
"klaw": "^3.0.0",
"md5": "^2.2.1",
"posix": "^4.2.0",
"promise-queue": "^2.2.5",
"promise-timeout": "^1.3.0",
"simple-sandbox": "file:../simple-sandbox",
"sleep-promise": "^8.0.1",
"socket.io": "^2.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/klaw": "^3.0.0",
"@types/node": "^13.7.4",
"@types/promise-queue": "^2.2.0",
"@types/uuid": "^3.4.7",
"prettier": "^1.19.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"files": [
"lib /**/*"
]
}