-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 970 Bytes
/
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
{
"name": "playwright-demo-project",
"version": "1.0.0",
"description": "An example playwright project to see how this works on github actions",
"main": "index.js",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"playwright": "^1.0.1"
},
"directories": {
"test": "test"
},
"devDependencies": {
"prettier": "2.0.5"
},
"scripts": {
"test": "mocha --timeout 50000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BhumiGopani/playwright-demo.git"
},
"keywords": [
"Playwright",
"Automation",
"Testing"
],
"author": "Bhumi Gopani",
"license": "ISC",
"bugs": {
"url": "https://github.com/BhumiGopani/playwright-demo/issues"
},
"homepage": "https://github.com/BhumiGopani/playwright-demo#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write"
]
}
}