forked from olavoparno/jest-badges-readme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.89 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
{
"author": "Olavo Parno",
"person": {
"name": "Olavo Parno",
"email": "[email protected]",
"url": "https://github.com/olavoparno"
},
"description": "Creates a group of coverage badges from Jest into your README.",
"version": "1.5.1",
"homepage": "https://github.com/olavoparno/jest-badges-readme#readme",
"repository": {
"type": "git",
"url": "git://github.com/olavoparno/jest-badges-readme.git"
},
"bin": {
"jest-badges-readme": "lib/index.js"
},
"scripts": {
"test": "jest --config jestconfig.json && node lib/index.js",
"testArgs": "jest --config jestconfig.json && node lib/index.js --coverageDir='./src/'",
"test:coverage": "npm run test --coverage",
"prebuild": "echo nok > .buildstatus",
"postbuild": "echo ok > .buildstatus",
"build": "microbundle",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"release": "standard-version"
},
"engines": {
"node": ">=6.11",
"npm": ">=5.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run test && git add 'README.md'"
}
},
"keywords": [
"coverage",
"badges",
"jest",
"istanbul",
"readme",
"typescript",
"tslint"
],
"files": [
"LICENSE",
"README.md",
"lib/"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"name": "@olavoparno/jest-badges-readme",
"dependencies": {},
"deprecated": false,
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"husky": "^4.2.5",
"jest": "^26.0.1",
"microbundle": "^0.12.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5"
}
}