-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "tundra-cli",
"version": "2.0.2",
"description": "Tundra is a Javascript test data management utility to help streamline http data capture for end-to-end testing. The main goal is to help applications easily implement cold storage testing",
"main": "index.js",
"scripts": {
"test": "jest"
},
"bin": {
"tundra": "./dist/index.js"
},
"keywords": [
"tundra-cli",
"tundra",
"fetch",
"mock",
"interceptor",
"intercept"
],
"author": "Tyler Murry",
"license": "MIT",
"dependencies": {
"async-mkdirp": "^1.2.4",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.15.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"get-port": "^4.0.0",
"lodash": "^4.17.5",
"opn": "^5.4.0",
"path": "^0.12.7",
"string-similarity": "^1.2.2",
"ws": "^6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3"
}
}