forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.16 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
{
"private": true,
"scripts": {
"create": "node ./scripts/generate-sub-package",
"bootstrap": "npm run clean && lerna bootstrap && npm run link",
"build": "lerna run build",
"clean": "run-p clean:*",
"clean:build": "rimraf ./packages/*/build",
"clean:pkglock": "rimraf ./packages/*/package-lock.json",
"clean:node_modules": "rimraf ./packages/*/node_modules ./packages/node_modules",
"clean:website": "rimraf docs/api/**/*.md && rimraf website/sidebars.json",
"link": "node ./scripts/link",
"release": "lerna publish",
"setup": "run-s bootstrap build",
"test": "run-s test:*",
"test:eslint": "eslint packages examples",
"test:coverage": "jest --coverage",
"test:wdio:sync": "wdio ./test/wdio.conf.js --spec=./test/specs/sync.spec.js",
"test:wdio:async": "wdio ./test/wdio.conf.js --spec=./test/specs/async.spec.js",
"watch": "node ./scripts/watch",
"watch:pkg": "lerna exec 'npm run compile -- --watch' --scope"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-stack-trace-sourcemap": "^1.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-env": "^1.3.3",
"babel-register": "^6.24.1",
"codecov": "^3.0.0",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.8.0",
"inquirer": "^5.1.0",
"jest": "^21.2.1",
"lerna": "^2.5.1",
"markdox": "^0.1.10",
"np": "^2.18.2",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1"
},
"jest": {
"testMatch": [
"/**/tests/**/*.test.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 92,
"functions": 94,
"lines": 95,
"statements": 95
}
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/packages/webdriverio/src/scripts",
"/packages/wdio-devtools-service/src/lighthouse"
]
}
}