-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "facilmock",
"description": "Module to stub endpoints for Expressjs apps running. Useful when you need to temporarily mock services for testing reasons.",
"main": "index.js",
"scripts": {
"eslint": "node_modules/eslint/bin/eslint.js *.js test/**.js",
"test": "./node_modules/.bin/mocha test/*.js -w",
"test:single": "istanbul cover ./node_modules/.bin/_mocha -- -R spec test",
"test:check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/leonardoanalista/facilmock.git"
},
"keywords": [
"e2e",
"continuous integration",
"testing",
"mock",
"expressjs",
"stub"
],
"author": "Leonardo Correa",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardoanalista/facilmock/issues"
},
"homepage": "https://github.com/leonardoanalista/facilmock",
"devDependencies": {
"body-parser": "1.14.1",
"chai": "3.4.1",
"cz-customizable": "2.3.1",
"express": "4.13.3",
"mocha": "2.3.4",
"supertest": "1.1.0",
"eslint": "1.9.0",
"istanbul": "0.4.0",
"codecov.io": "0.1.6",
"ghooks": "1.0.0",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"ghooks": {
"pre-commit": "npm run eslint && npm run test:single"
}
}
}