forked from 4Catalyzer/selenium-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.49 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
{
"name": "@4c/selenium-sandbox",
"version": "0.2.3",
"main": "browser/index.js",
"repository": {
"type": "git",
"url": "https://github.com/4Catalyzer/selenium-sandbox.git"
},
"author": "4Catalyzer",
"license": "MIT",
"scripts": {
"babel": "babel src --ignore **/__tests__ --delete-dir-on-start -x .js,.ts,.tsx",
"build:types": "tsc --emitDeclarationOnly --outDir lib",
"build": "yarn babel -d lib && yarn build:types",
"prepublishOnly": "yarn run build",
"release": "rollout",
"tdd": "jest --watch",
"test": "yarn lint",
"testonly": "jest",
"eslint": "eslint . --ext .js,.ts,.tsx",
"prettier": "prettier --ignore-path .eslintignore '**/*.{json,css,md}'",
"lint": "tsc --noEmit && yarn eslint && yarn prettier --list-different",
"format": "yarn eslint && yarn prettier --write"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{json,css,md}": "prettier --write --ignore-path .eslintignore"
},
"jest": {
"preset": "@4c/jest-preset",
"testEnvironment": "node"
},
"release": {
"publishDir": "lib",
"conventionalCommits": true
},
"devDependencies": {
"@4c/babel-preset": "^8.0.1",
"@4c/jest-preset": "^1.5.3",
"@4c/rollout": "^2.1.11",
"@4c/tsconfig": "^0.3.1",
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-typescript": "^7.12.7",
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^7.15.0",
"eslint-config-4catalyzer": "^1.1.4",
"eslint-config-4catalyzer-jest": "^2.0.9",
"eslint-config-4catalyzer-typescript": "^3.0.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@4c/fetch-mock": "^8.0.0",
"@types/fetch-mock": "^7.3.3",
"@types/jest": "^26.0.16",
"@types/selenium-webdriver": "^4.0.10",
"selenium-webdriver": "^4.0.0-alpha.8"
},
"resolutions": {
"//": "punycode v2 does not support browser clients",
"punycode": "^1.4.1"
}
}