-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "macaca-cli",
"version": "2.3.1",
"description": "Macaca command-line interface",
"keywords": [
"automation",
"webdriver",
"ui automation",
"test framework",
"macaca",
"coverage",
"runner"
],
"bin": {
"macaca": "./bin/macaca-cli.js"
},
"main": "./lib",
"files": [
"bin/**/*.js",
"lib/**/*.js",
"scripts/print.js"
],
"repository": {
"type": "git",
"url": "git://github.com/macacajs/macaca-cli.git"
},
"dependencies": {
"ansi-to-html": "~0.3.0",
"cli-table": "~0.3.1",
"co": "~4.6.0",
"commander": "^2.20.0",
"co-request": "^1.0.0",
"java-util": "~0.1.0",
"macaca-coverage": "^1.0.0",
"macaca-logo": "^1.0.0",
"macaca-utils": "^1.0.0",
"mocha": "^5.2.0",
"mocha-parallel-tests": "^2.0.6-alpha.2",
"net-tools": "^1.0.0",
"npm-update": "~1.0.2",
"semver": "^5.3.0",
"should": "^8.3.1",
"webdriver-server": "1",
"xlogger": "~1.0.0"
},
"devDependencies": {
"co-mocha": "*",
"command-line-test": "^1.0.0",
"eslint": "^4.14.0",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "2",
"husky": "^1.3.1",
"nyc": "^13.3.0"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint --fix .",
"postinstall": "node ./scripts/print.js",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://macacajs.github.io",
"changelog": "https://macacajs.github.io/guide/roadmap.html",
"license": "MIT"
}