-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "@cabiri-io/ltbc",
"version": "0.2.0",
"description": "Wraps a function to allow running chaos experiments.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"http",
"https",
"functions",
"cloud",
"mock",
"chaos",
"experiment",
"aws",
"azure",
"gcloud"
],
"license": "MIT",
"homepage": "https://github.com/cabiri-io/ltbc",
"bugs": "https://github.com/cabiri-io/ltbc/issues",
"author": {
"name": "Kamil Zuzda",
"email": "kamil@cabiri.io",
"url": "https://cabiri.io"
},
"repository": {
"type": "git",
"url": "git://github.com/cabiri-io/ltbc.git"
},
"scripts": {
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "jest",
"watch": "tsc -w",
"build": "tsc"
},
"dependencies": {
"@cabiri-io/mitm": "1.8.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/pino": "^6.0.0",
"jest": "^27.2.1",
"pino": "^6.0.0",
"pino-pretty": "^7.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}