forked from alepek/fejk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "smock",
"version": "1.0.0",
"description": "A stateless mock with stateful capabilities",
"engines": {
"node": "^6.9.0"
},
"main": "src/smock.js",
"entry": "src/smock.js",
"scripts": {
"example": "node example/index.js",
"example:watch": "nodemon --watch src --watch example example/index.js",
"test": "jest",
"lint": "eslint src/**/*.js && echo src is lint-free!",
"precommit": "npm run lint",
"prepush": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alepek/smock.git"
},
"author": "alepek",
"license": "MIT",
"bugs": {
"url": "https://github.com/alepek/smock/issues"
},
"homepage": "https://github.com/alepek/smock#readme",
"dependencies": {
"body-parser": "^1.16.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"is-subset": "^0.1.1",
"jsonschema": "^1.1.1",
"node-dir": "^0.1.16"
},
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"husky": "^0.13.1",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"nodemon": "^1.11.0",
"rewire": "^2.5.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": ["src"],
"coverageDirectory": ".coverage",
"testPathIgnorePatterns": [
"__data__"
]
}
}