-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "jest-json-to-tap",
"version": "0.0.0-semantically-released",
"description": "Jest Json parser that outputs TAP results",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"precommit": "npm run lint",
"prepush": "npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"jest-json-to-tap": "index.js"
},
"author": "MailOnline <fe@mailonline.co.uk>",
"homepage": "https://github.com/MailOnline/jest-json-to-tap",
"repository": {
"type": "git",
"url": "git@github.com:MailOnline/jest-json-to-tap.git"
},
"license": "MIT",
"devDependencies": {
"commitizen": "^2.9.5",
"eslint": "^4.2.0",
"eslint-config-mailonline": "^7.0.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"mol-conventional-changelog": "^1.2.0",
"semantic-release": "^8.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"index.js"
]
}
}