-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nni",
"version": "1.9.90",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "nyc mocha -r ts-node/register -t 15000 --recursive **/*.test.ts --exclude node_modules/**/**/*.test.ts --colors",
"start": "node dist/main.js",
"watch": "tsc --watch",
"eslint": "npx eslint ./ --ext .ts"
},
"license": "MIT",
"dependencies": {
"azure-storage": "^2.10.2",
"child-process-promise": "^2.2.1",
"express": "^4.16.3",
"express-joi-validator": "^2.0.0",
"ignore": "^5.1.4",
"js-base64": "^2.4.9",
"kubernetes-client": "^6.5.0",
"lockfile": "^1.0.4",
"python-shell": "^2.0.1",
"rx": "^4.1.0",
"sqlite3": "^5.0.0",
"ssh2": "^0.6.1",
"stream-buffers": "^3.0.2",
"tail-stream": "^0.3.4",
"tar": "^6.0.2",
"tree-kill": "^1.2.2",
"ts-deferred": "^1.0.4",
"typescript-ioc": "^1.2.4",
"typescript-string-operations": "^1.3.1",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.0",
"@types/glob": "^7.1.1",
"@types/js-base64": "^2.3.1",
"@types/js-yaml": "^3.12.5",
"@types/lockfile": "^1.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "10.12.18",
"@types/request": "^2.47.1",
"@types/rx": "^4.1.1",
"@types/sqlite3": "^3.1.3",
"@types/ssh2": "^0.5.35",
"@types/stream-buffers": "^3.0.2",
"@types/tar": "^4.0.3",
"@types/tmp": "^0.0.33",
"@types/ws": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^6.7.2",
"glob": "^7.1.3",
"mocha": "^8.1.3",
"npx": "^10.2.2",
"nyc": "^15.0.0",
"request": "^2.87.0",
"rmdir": "^1.2.0",
"tmp": "^0.0.33",
"ts-node": "^7.0.0",
"typescript": "^3.2.2"
},
"resolutions": {
"mem": ">=4.0.0",
"lodash": ">=4.17.13",
"lodash.merge": ">=4.6.2",
"node.extend": ">=1.1.7",
"hoek": ">=4.2.1",
"js-yaml": ">=3.13.1",
"acorn": ">=7.1.1",
"node-forge": ">=0.10.0",
"dot-prop": ">=4.2.1",
"npm": ">=6.14.8",
"yargs": ">=16.0.3",
"yargs-parser": ">=20.2.0"
},
"engines": {
"node": ">=10.0.0"
},
"nyc": {
"include": [
"**/*.ts"
],
"exclude": [
"**/test/*",
"./node_modules/"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}