forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.74 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "webdriverio-monorepo",
"private": true,
"scripts": {
"create": "node ./scripts/generateSubPackage",
"backport": "node ./scripts/backport.js",
"bootstrap-full": "npm run clean && lerna bootstrap --no-ci && npm run link",
"bootstrap": "run-p clean:* && lerna bootstrap --force-local && npm run link",
"build": "run-s clean:build generate:typings compile copy",
"changelog": "node ./scripts/changelog.js",
"ci": "run-s setup-full test test:e2e",
"clean": "run-p clean-full:* 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",
"clean:website": "rimraf website/docs/_*.md website/docs/api/_*.md website/docs/api/**/_*.md website/sidebars.json",
"clean:tests": "rimraf tests/typings/**/node_modules tests/typings/**/dist ./coverage",
"clean:cache": "rimraf .eslintcache",
"clean-full:package_modules": "rimraf ./packages/*/node_modules",
"compile": "node ./scripts/build",
"copy": "lerna run --parallel copy",
"generate:typings": "node ./scripts/type-generation/generate-all-typings.js",
"link": "node ./scripts/link",
"pushReleaseTag": "node ./scripts/pushTags.js",
"setup-full": "run-s bootstrap-full build",
"setup": "run-s bootstrap build",
"docs": "run-s docs:*",
"docs:setup": "cd ./website && npm install && cd ..",
"docs:generate": "npm run clean:website && node ./scripts/docs-generation/generateDocs.js",
"docs:build": "cd ./website && npm run build && cd ..",
"docs:deploy": "node ./scripts/updateDocs.js",
"test": "run-s test:depcheck test:eslint test:typings test:coverage test:smoke",
"test:depcheck": "node ./scripts/depcheck.js",
"test:eslint": "eslint --cache packages examples scripts tests",
"test:typings": "run-s test:typings:*",
"test:typings:setup": "node tests/typings/setup && npm i --no-save tsd",
"test:typings:test": "npm run ts && npm run clean:tests && node tests/typings/setup --ts=3.9 && npm run ts && npm run clean:tests",
"test:typings:recover": "rm ./node_modules/.bin/tsc && ln -s ../typescript/bin/tsc node_modules/.bin && npx rimraf @tsd/typescript",
"test:coverage": "node --max-old-space-size=8192 ./node_modules/jest/bin/jest.js --coverage --logHeapUsage",
"test:smoke": "ts-node ./tests/smoke.runner.js",
"test:e2e": "jest --config e2e/jest.config.js",
"test:e2e:edge": "npm run test:e2e -- --testMatch '**/edge.e2e.js'",
"test:e2e:firefox": "npm run test:e2e -- --testMatch '<rootDir>/standalone/firefox.e2e.js'",
"test:e2e:cloud": "./packages/wdio-cli/bin/wdio.js ./e2e/wdio/wdio.sauce.conf.js",
"ts": "run-p ts:*",
"ts:webdriver": "cd tests/typings/webdriver && npx tsc",
"ts:devtools": "cd tests/typings/devtools && npx tsc",
"ts:webdriverio": "cd tests/typings/webdriverio && npx tsc",
"ts:mocha": "cd tests/typings/mocha && npx tsc",
"ts:jasmine": "cd tests/typings/jasmine && npx tsc",
"ts:cucumber": "cd tests/typings/cucumber && npx tsc",
"ts:sync": "cd tests/typings/sync && npx tsc",
"watch": "node ./scripts/build --watch",
"watch:docs": "npm run docs:generate && cd website && npm i && npm start",
"version": "npm run changelog && git add CHANGELOG.md",
"postinstall": "run-s postinstall:*",
"postinstall:husky": "husky install",
"postinstall:vulnerabilities": "cat ./.husky/postinstall.txt"
},
"devDependencies": {
"@cucumber/cucumber": "^8.0.0-rc.1",
"@octokit/rest": "^18.12.0",
"@tsconfig/node12": "^1.0.9",
"@types/archiver": "^5.1.1",
"@types/cheerio": "^0.22.30",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.isobject": "^3.0.6",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.zip": "^4.2.6",
"@types/node": "^17.0.4",
"@types/split2": "^3.2.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"aws-sdk": "^2.1008.0",
"camelcase": "^6.2.0",
"cheerio": "^1.0.0-rc.10",
"copyfiles": "^2.4.1",
"del": "^6.0.0",
"depcheck": "^1.4.2",
"ejs": "^3.1.6",
"eslint": "^8.0.1",
"husky": "^7.0.2",
"inquirer": "^8.2.0",
"jest": "^27.2.5",
"jest-circus": "^27.2.5",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"markdox": "^0.1.7",
"mime-types": "^2.1.33",
"npm-run-all": "^4.1.5",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"tempy": "^1.0.1",
"ts-jest": "^27.0.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"url-join": "^4.0.1"
}
}