-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "@tiandatong/anymock",
"version": "0.0.0-development",
"description": "mock service base on Anyproxy.",
"main": "lib/anymock.js",
"bin": "lib/anymock.js",
"scripts": {
"start": "npm run dev",
"dev": "node ./lib/anymock.js",
"test": "npm run test:unit",
"test:unit": "jest --coverage --testMatch \"<rootDir>/test/*.unittest.js\" && codecov",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/temberature/anymock.git"
},
"keywords": [
"['mock'",
"'Anyproxy'",
"'proxy'",
"'API'",
"'HTTP'",
"'simulator']"
],
"author": "Tong",
"license": "MIT",
"bugs": {
"url": "https://github.com/temberature/anymock/issues"
},
"homepage": "https://github.com/temberature/anymock#readme",
"devDependencies": {
"codecov": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.6.0",
"semantic-release": "^15.10.8",
"travis-deploy-once": "^5.0.9"
},
"dependencies": {
"anyproxy": "^4.0.12",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"http-proxy": "^1.17.0",
"is-my-json-valid": "^2.19.0",
"is-type-of": "^1.2.1",
"load-json-file": "^5.1.0",
"normalize-url": "^4.0.0",
"ramda": "^0.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.9.4 <9"
}
}