-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.12 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
76
{
"name": "what-the-status-code-cli",
"description": "A CLI Tool to help choosing the correct HTTP Status Code by answering some questions.",
"main": "app/index.js",
"files": [
"LICENSE",
"README.md",
"app"
],
"scripts": {
"validate": "npm-run-all --parallel test:lint test:cover --sequential check-coverage",
"test": "npm run test:lint && npm run test:unit",
"test:cover": "nyc --all --reporter=lcov --reporter=text ava",
"test:lint": "eslint app/ test/",
"test:unit": "ava --verbose",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"wtsc": "app/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ta2edchimp/what-the-status-code-cli.git"
},
"keywords": [
"http",
"status",
"code",
"status",
"code"
],
"author": "Andreas Windt <email@andreaswindt.com> (http://andreaswindt.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ta2edchimp/what-the-status-code-cli/issues"
},
"homepage": "https://github.com/ta2edchimp/what-the-status-code-cli#readme",
"dependencies": {
"cli-table2": "^0.2.0",
"colors": "^1.1.2",
"inquirer": "^1.0.3",
"inquiry-traverser": "^0.3.0",
"object-assign": "^4.0.1"
},
"devDependencies": {
"ava": "^0.16.0",
"codecov": "^1.0.1",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.4.0",
"eslint-config-idiomatic": "^2.0.0",
"eslint-config-ta2edchimp": "^1.1.0",
"ghooks": "^1.2.0",
"lodash.clone": "^4.3.2",
"npm-run-all": "^3.1.0",
"nyc": "^8.1.0",
"proxyquire": "^1.7.4",
"semantic-release": "^4.3.5",
"validate-commit-msg": "^2.5.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm run test"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"app/*"
]
}
}