forked from playwright-community/jest-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.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
{
"name": "jest-playwright-preset",
"version": "0.0.6",
"main": "index.js",
"description": "Running tests using Jest & Playwright.",
"license": "MIT",
"keywords": [
"jest",
"playwright",
"jest-playwright",
"jest-playwright-preset"
],
"author": "mmarkelov",
"bugs": {
"url": "https://github.com/mmarkelov/jest-playwright/issues"
},
"repository": {
"url": "https://github.com/mmarkelov/jest-playwright.git",
"type": "git"
},
"homepage": "https://github.com/mmarkelov/jest-playwright#readme",
"scripts": {
"build": "rm -rf lib/ && babel src -d lib --ignore '**/*.test.js'",
"format": "prettier --write \"*.{js,md}\" \"src/*.js\"",
"lint": "eslint .",
"prepublishOnly": "yarn run build",
"test:utils": "jest src/utils.test.js",
"test": "npm run test:utils && jest tests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,md}": [
"prettier --write"
],
"*.js": "eslint --fix"
},
"peerDependencies": {
"jest-environment-node": "^25.1.0"
},
"optionalDependencies": {
"playwright": "*",
"playwright-chromium": "*",
"playwright-firefox": "*",
"playwright-webkit": "*"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-environment-node": "^25.1.0",
"lint-staged": "^10.0.7",
"playwright": "^0.10.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1"
}
}