-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
87 lines (87 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "istanbul-badges-readme",
"version": "1.9.0",
"description": "Creates README badges from istanbul coverage report",
"scripts": {
"test": "jest",
"test:cover": "npm run test -- --coverage",
"test:ci": "CI=TRUE npm run test:cover",
"lint": "eslint src/**/*.{js,ts,tsx} --quiet",
"lint:fix": "npm run lint -- --fix",
"build": "rm -rf lib/ && tsc",
"start": "npm run build && node lib/index.js -- --logo=jest",
"start:dev": "nodemon",
"release": "standard-version",
"make-badges": "node lib/index.js -- --logo=jest",
"make-badges:ci": "npm run make-badges -- --ci",
"prepublishOnly": "npm run build"
},
"main": "lib/index.js",
"bin": {
"istanbul-badges-readme": "lib/index.js"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"keywords": [
"coverage",
"badges",
"jest",
"istanbul",
"mocha",
"chai",
"c8",
"sinon",
"readme",
"markdown"
],
"author": "Olavo Parno",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/the-bugging/istanbul-badges-readme.git"
},
"jest": {
"coverageReporters": [
"json-summary",
"lcov"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"modulePathIgnorePatterns": [
"/node_modules/",
"/examples/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}