generated from e2e-boilerplate/puppeteer-commonjs-mocha-chai-assert
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
{
"author": "Girma Nigusse <[email protected]>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/puppeteer-commonjs-mocha-chai-should/issues"
},
"dependencies": {
"chai": "4.3.6",
"mocha": "9.2.2",
"puppeteer": "5.5.0"
},
"description": "Puppeteer end-to-end test automation boilerplate. Using Commonjs, Mocha, Chai and Should.",
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.7.1",
"pretty-quick": "3.1.3"
},
"homepage": "https://github.com/e2e-boilerplate/puppeteer-commonjs-mocha-chai-should#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"chai",
"commonjs",
"mocha",
"puppeteer",
"puppeteer automation",
"puppeteer boilerplate",
"puppeteer example",
"should",
"e2e",
"e2e tests",
"boilerplate",
"integration test",
"test automation",
"javascript"
],
"license": "MIT",
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
},
"name": "puppeteer-commonjs-mocha-chai-should",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/puppeteer-commonjs-mocha-chai-should.git"
},
"scripts": {
"lint": "npx eslint --ext .js ./ --fix",
"test": "npx mocha spec/*.spec.js"
},
"version": "1.0.0"
}