-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "mocha-chrome",
"version": "2.2.0",
"description": "☕ Run Mocha tests using headless Google Chrome",
"license": "MIT",
"repository": "shellscape/mocha-chrome",
"author": "shellscape",
"main": "index.js",
"bin": {
"mocha-chrome": "./cli.js"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --fix --cache cli.js index.js client lib test",
"lint-staged": "lint-staged",
"security": "npm audit --audit-level=moderate",
"test": "mocha test/test.js --timeout 10000 --exit"
},
"files": [
"client",
"lib",
"cli.js",
"index.js",
"LICENSE",
"README.md"
],
"dependencies": {
"chalk": "^2.0.1",
"chrome-launcher": "^0.13.4",
"chrome-remote-interface": "^0.28.0",
"chrome-unmirror": "^0.1.0",
"debug": "^4.1.1",
"deep-assign": "^3.0.0",
"import-local": "^2.0.0",
"loglevel": "^1.4.1",
"meow": "^5.0.0",
"nanobus": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.2.0",
"eslint-config-shellscape": "^2.1.0",
"execa": "^4.0.3",
"lint-staged": "^10.4.0",
"mocha": "^6.2.3",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier --write package.json",
"git add"
]
},
"pre-commit": "lint-staged"
}