package.json 1.32 KB
Newer Older
Deshui Yu's avatar
Deshui Yu committed
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
{
  "name": "nni",
  "version": "1.0.0",
  "main": "index.js",
  "scripts": {
    "postbuild": "cp -f --parent scripts/*.py ./dist/",
    "build": "tsc",
    "test": "mocha -r ts-node/register -t 15000 --recursive **/*.test.ts --colors",
    "start": "node dist/main.js"
  },
  "license": "MIT",
  "dependencies": {
    "chai-as-promised": "^7.1.1",
    "child-process-promise": "^2.2.1",
    "express": "^4.16.3",
    "node-nvidia-smi": "^1.0.0",
    "rx": "^4.1.0",
    "sqlite3": "^4.0.2",
    "ssh2": "^0.6.1",
    "stream-buffers": "^3.0.2",
    "tail-stream": "^0.3.4",
    "tree-kill": "^1.2.0",
    "ts-deferred": "^1.0.4",
    "typescript-ioc": "^1.2.4",
    "typescript-string-operations": "^1.3.1"
  },
  "devDependencies": {
    "@types/chai": "^4.1.4",
    "@types/chai-as-promised": "^7.1.0",
    "@types/express": "^4.16.0",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.5.5",
    "@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/tmp": "^0.0.33",
    "chai": "^4.1.2",
    "mocha": "^5.2.0",
    "request": "^2.87.0",
    "tmp": "^0.0.33",
    "ts-node": "^7.0.0",
    "tslint": "^5.11.0",
    "tslint-microsoft-contrib": "^5.1.0",
    "typescript": "^3.0.1"
  },
  "engines": {
    "node": ">=10.0.0"
  }
}