-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "jest-tap-reporter",
"version": "0.0.0-semantically-released",
"description": "Jest TAP reporter",
"main": "index.js",
"scripts": {
"test": "jest",
"demo": "jest --testPathPattern 'demo/.+\\.test\\.js' --testRegex 'demo/.+\\.test\\.js$'",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"precommit": "npm run lint",
"prepush": "npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "MailOnline <[email protected]>",
"homepage": "https://github.com/MailOnline/jest-json-to-tap",
"repository": {
"type": "git",
"url": "[email protected]:MailOnline/jest-tap-reporter.git"
},
"license": "MIT",
"devDependencies": {
"commitizen": "^2.9.5",
"eslint": "^4.2.0",
"eslint-config-mailonline": "^9.0.0",
"husky": "^0.14.3",
"jest-cli": "22.4.2",
"jest": "22.4.2",
"mol-conventional-changelog": "^1.2.0",
"semantic-release": "^12.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"index.js"
],
"reporters": [
[
"./",
{
"logLevel": "INFO",
"showInternalStackTraces": false
}
]
],
"testRegex": "(test|src)\\/.+\\.(test|spec)\\.jsx?$"
},
"dependencies": {
"@babel/code-frame": "7.0.0-beta.36",
"chalk": "^2.3.0",
"string.prototype.padend": "^3.0.0",
"string.prototype.padstart": "^3.0.0",
"strip-ansi": "4.0.0",
"utf8-bar": "0.1.0"
}
}