-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 819 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 819 Bytes
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
{
"name": "infrastructure-tests",
"version": "1.0.0",
"description": "Tests of the metacode.biz infrastructure",
"repository": {
"url": "https://github.com/wiktor-k/infrastructure-tests"
},
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"test": "ava --verbose --timeout 20m",
"start-in-docker": "docker build -t metacode/infr . && docker run --rm -i metacode/infr"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^13.9.2",
"@types/node-fetch": "^2.5.5",
"@types/stack-trace": "^0.0.29",
"typescript": "^3.8.3"
},
"dependencies": {
"ava": "^3.5.0",
"glob": "^7.1.6",
"is-ipv6-node": "^1.0.7",
"node-fetch": "^2.6.0",
"source-map-support": "^0.5.16",
"stack-trace": "^0.0.10"
}
}