forked from covid-modeling/model-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.7 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
{
"name": "@covid-policy-modelling/model-runner",
"version": "1.6.2",
"main": "dist/index.js",
"scripts": {
"test": "nyc mocha --debug-brk --ui tdd -r ts-node/register test/unit/*-test.ts",
"integration-test": "nyc mocha --debug-brk --ui tdd -r ts-node/register test/integration/*-test.ts",
"start": "node bin/run-model",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/dockerode": "^2.5.27",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@types/unzipper": "^0.10.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gts": "^1.1.2",
"husky": "^4.2.5",
"mocha": "^7.1.1",
"nyc": "^15.1.0",
"pino-pretty": "^7.1.0",
"prettier": "^1.19.1",
"ts-node": "^8.8.1",
"typescript": "^3.9.2"
},
"engines": {
"node": ">=0.14"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix"
}
},
"dependencies": {
"@azure/identity": "^1.1.0-preview.3",
"@azure/storage-blob": "^12.1.1",
"@covid-policy-modelling/api": "^0.20.1",
"archiver": "^4.0.1",
"dockerode": "^3.2.0",
"fast-glob": "^3.2.2",
"jsen": "^0.6.6",
"mkdirp": "^1.0.3",
"pino": "^7.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/covid-policy-modelling/model-runner.git",
"directory": "packages/model-runner"
},
"bugs": {
"url": "https://github.com/covid-policy-modelling/model-runner/issues"
}
}