-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "macaca-coverage",
"version": "1.1.2",
"description": "Macaca coverage tool",
"keywords": [
"macaca",
"coverage",
"iOS",
"Android"
],
"bin": {
"macaca-coverage": "./bin/macaca-coverage.js"
},
"main": "index.js",
"files": [
"bin/**/*.js",
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/macacajs/macaca-coverage.git"
},
"homepage": "https://macacajs.github.io/coverage",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"last-commit-log": "^3.2.0",
"macaca-istanbul": "^1.0.18",
"shelljs": "^0.8.1",
"xlogger": "^1.0.6",
"xml2map": "1"
},
"devDependencies": {
"co-mocha": "*",
"eslint": "7",
"eslint-config-egg": "^11.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "^1.0.3",
"husky": "^8.0.3",
"minimatch": "^5.1.6",
"mocha": "*",
"nyc": "*",
"power-assert": "^1.6.1",
"pre-commit": "*"
},
"scripts": {
"ci": "npm run lint && npm run test",
"test:lcov": "nyc --reporter=lcov --reporter=text mocha --recursive",
"clean": "rm -rf coverage test/temp",
"test": "nyc --reporter=json --reporter=text mocha --recursive",
"lint": "eslint . --fix --ext .js",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}