-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "dock-worker",
"version": "1.2.6",
"description": "Automated Dokku Deployment",
"repository": "artcom/dock-worker",
"files": [
"dist/"
],
"bin": {
"dock": "dist/main.js"
},
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"debug": "npm run build && node --inspect-brk dist/main.js",
"lint": "eslint ./src/*/*.ts ./test/*.ts",
"start": "npm run build && node dist/main.js",
"test": "npm run lint && mocha -r ts-node/register test/**/*.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf ./dist && tsc"
},
"dependencies": {
"bl": "^4.0.0",
"chalk": "^3.0.0",
"docopt": "^0.6.2",
"elegant-spinner": "^2.0.0",
"lodash": "^4.17.15",
"log-update": "^3.3.0",
"read-promise": "^1.0.2",
"ssh2": "^1.15.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0",
"yn": "^4.0.0"
},
"devDependencies": {
"@types/bl": "^2.1.0",
"@types/chai": "^4.2.7",
"@types/chai-as-promised": "^7.1.2",
"@types/docopt": "^0.6.31",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"@types/sinon": "^7.5.1",
"@types/ssh2": "^0.5.39",
"@types/text-table": "^0.2.1",
"@types/tmp": "0.1.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-artcom": "^0.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-typescript": "^0.14.0",
"mocha": "^10.2.0",
"sinon": "^8.0.4",
"tmp": "0.1.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"license": "MIT"
}