-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "api-piki",
"version": "0.0.0-development",
"description": "A Web API test skeletons generator for APIs described using OpenAPI Specification (fka Swagger).",
"main": "index.js",
"scripts": {
"precommit": "npm run cover && npm run check-coverage",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 50 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"watch:test": "npm t -- -w",
"test": "mocha",
"cover": "nyc --reporter=lcov --reporter=text npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"piki": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vivocha/api-piki.git"
},
"engines": {
"node": ">= 7.7.4"
},
"keywords": [
"API",
"REST",
"Test",
"Swagger",
"OpenAPI"
],
"files": [
"src",
"index.js",
"README.md",
"LICENSE"
],
"author": "Antonio Pintus <apintus@vivocha.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vivocha/api-piki/issues"
},
"homepage": "https://github.com/vivocha/api-piki",
"devDependencies": {
"chai": "^3.5.0",
"commitizen": "2.9.6",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"husky": "^0.13.3",
"mocha": "^3.3.0",
"nyc": "^10.3.2",
"rewire": "^2.5.2",
"semantic-release": "^6.3.6",
"supertest": "^3.0.0"
},
"dependencies": {
"chai": "^3.5.0",
"commander": "^2.9.0",
"debug": "^2.6.6",
"jsonpolice": "^5.2.0",
"lodash": "^4.17.4",
"request": "^2.81.0",
"supertest": "^3.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}