-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.08 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
{
"name": "varmon-jest",
"version": "1.0.7",
"license": "MIT",
"engines": {
"node": ">= 8.10"
},
"bin": {
"varmon": "dist/varmon-cli.js"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"typecheck": "tsc",
"test": "jest --projects src --detectOpenHandles",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc --watch ",
"appium": "appium",
"appium:doctor": "appium-doctor"
},
"lint-staged": {
"*.{js,ts,tsx}": "npm run lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run lint && npm run typecheck && npm run build && npm test"
}
},
"dependencies": {
"@types/got": "^9.6.9",
"axios": "^0.19.0",
"fs-extra": "^9.0.0",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^6.0.0",
"imagemin-pngquant": "^8.0.0",
"jest": "^25.2.3",
"jest-circus": "^25.2.3",
"jest-cli": "^25.2.3",
"jest-environment-node": "^25.2.3",
"lodash": "^4.17.15",
"rimraf": "^3.0.0",
"tmp": "^0.2.1",
"ts-jest": "^25.2.1",
"webdriverio": "~5.22.4"
},
"peerDependencies": {
"jest": "^25.2.3"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/axios": "^0.14.0",
"@types/fs-extra": "^8.0.1",
"@types/imagemin": "^7.0.0",
"@types/imagemin-jpegtran": "^5.0.0",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.31",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.7",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"commitlint": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"typescript": "^3.7.4"
},
"keywords": [
"appium",
"jest-environment",
"jest",
"selenium",
"webdriver",
"webdriverio"
]
}