forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"scripts": {
"create": "node ./scripts/generate-sub-package",
"bootstrap": "npm run clean && lerna bootstrap --no-ci && npm run link",
"build": "lerna run build",
"clean": "run-p clean:*",
"clean:build": "rimraf ./packages/*/build",
"clean:pkglock": "rimraf ./packages/*/package-lock.json",
"clean:tgz": "rimraf ./packages/*/*.tgz",
"clean:node_modules": "rimraf ./packages/*/node_modules ./packages/node_modules",
"clean:website": "rimraf docs/_*.md && rimraf docs/api/*.md && rimraf docs/api/**/*.md && rimraf website/sidebars.json",
"link": "node ./scripts/link",
"release": "NODE_ENV=production npm run setup && lerna publish",
"setup": "run-s bootstrap build",
"test": "run-s test:*",
"test:eslint": "eslint packages examples scripts",
"test:coverage": "jest --coverage --detectOpenHandles",
"test:smoke": "babel-node ./tests/smoke.runner.js",
"version": "node ./scripts/changelog.js && git add CHANGELOG.md && npm run generate:typings",
"generate:typings": "node ./scripts/type-generation/generate-all-typings.js",
"watch": "node ./scripts/watch",
"watch:pkg": "lerna exec 'npm run compile -- --watch' --scope"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-source-map-support": "^2.0.1",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.0.0",
"copyfiles": "^2.1.0",
"del": "^3.0.0",
"dox": "^0.9.0",
"eslint": "^4.7.2",
"eslint-plugin-import": "^2.8.0",
"inquirer": "^5.1.0",
"jest": "^23.6.0",
"lerna": "^3.4.3",
"lerna-changelog": "^0.8.2",
"markdox": "^0.1.10",
"np": "^2.18.2",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"source-map-support": "^0.5.9",
"tempy": "^0.2.1"
},
"jest": {
"testMatch": [
"**/tests/**/*.test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/",
"<rootDir>/node_modules/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 96,
"lines": 96,
"statements": 96
}
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules/",
"packages/webdriverio/src/scripts",
"packages/wdio-devtools-service/src/lighthouse",
"packages/webdriverio/build",
"packages/webdriver/build"
]
}
}