This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.86 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
{
"name": "appium-plugins-monorepo",
"private": true,
"devDependencies": {
"@appium/eslint-config-appium": "5.0.0",
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@types/mocha": "9.1.0",
"@types/node": "16.11.21",
"appium": "2.0.0-beta.25",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"copyfiles": "2.4.1",
"eslint": "7.32.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-promise": "5.1.1",
"get-port": "6.0.0",
"lerna": "4.0.0",
"mocha": "9.1.4",
"npm-run-all": "4.1.5",
"pre-commit": "1.2.2",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"sinon": "12.0.1",
"teen_process": "1.16.0",
"ts-node": "10.4.0",
"typescript": "4.5.5",
"webdriverio": "7.16.13"
},
"scripts": {
"clean": "run-s \"clean:*\" && npm install && npm run build",
"clean:appiumhome": "rimraf \"packages/*/local_appium_home\"",
"clean:tsc": "rimraf \"packages/*/build\"",
"clean:pkglock": "rimraf package-lock.json && rimraf \"packages/*/package-lock.json\"",
"clean:modules": "lerna clean -y && rimraf node_modules",
"build": "lerna run copyfiles && node ./scripts/build.js",
"watch": "lerna run copyfiles && node ./scripts/build.js --watch",
"bootstrap": "lerna bootstrap --no-ci",
"test": "run-s \"test:*\"",
"test:lint": "lerna exec --stream -- npx eslint .",
"test:unit": "lerna run --stream test:unit",
"test:e2e": "lerna run --stream --concurrency 1 test:e2e",
"precommit:msg": "echo 'Running pre-commit checks...' && exit 0",
"precommit:test": "npm run build && npm run test:lint && npm run test:unit",
"publish": "npm run build && lerna publish",
"postinstall": "npm run bootstrap"
},
"pre-commit": [
"precommit:msg",
"precommit:test"
]
}