forked from macacajs/macaca-reporter-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 811 Bytes
/
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
{
"name": "macaca-reporter-jest",
"version": "1.0.0",
"description": "Macaca reporter used for jest.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/macacajs/macaca-reporter-jest.git"
},
"files": [
"index.js",
"lib/*.js"
],
"dependencies": {
"macaca-reporter": "1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"git-contributor": "1",
"husky": "*",
"jest": "^26.2.2",
"mocha": "*",
"nyc": "*"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint . --fix",
"contributor": "git-contributor",
"jest": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}