forked from tlvince/make-coverage-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "make-coverage-badge",
"version": "0.0.0-development",
"description": "Create a coverage badge",
"main": "cli.js",
"bin": "cli.js",
"scripts": {
"lint": "npm run eslint && npm run prettier -- --check",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json,css,md}'",
"test": "./test.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/tlvince/make-coverage-badge.git"
},
"keywords": [
"coverage",
"badge",
"istanbul"
],
"author": "Tom Vincent <[email protected]> (https://tlvince.com)",
"engines": {
"node": ">=6.11",
"npm": ">=5.3"
},
"bugs": {
"url": "https://github.com/tlvince/make-coverage-badge/issues"
},
"homepage": "https://github.com/tlvince/make-coverage-badge#readme",
"dependencies": {
"mri": "1.1.4"
},
"devDependencies": {
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "3.1.0",
"prettier": "1.19.1",
"semantic-release": "15.13.31",
"validate-commit-msg": "2.14.0"
},
"files": [
"cli.js"
],
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "eslint .",
"pre-push": "./test.js"
}
}
}