forked from checkly/puppeteer-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 955 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
{
"name": "puppeteer-examples",
"version": "1.0.1",
"description": "Ready to run Puppeteer example from Checkly",
"dependencies": {
"puppeteer": "2.0.0",
"mocha": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-checkly": "0.0.5",
"eslint-plugin-mocha": "^4.12.1",
"file-system": "^2.2.2",
"jest": "^21.2.1",
"js-comments": "^0.5.4",
"lodash": "^4.17.19"
},
"scripts": {
"lint": "eslint . --fix"
},
"eslintConfig": {
"extends": [
"checkly",
"checkly/node"
],
"rules": {
"no-undef": "warn"
},
"plugins": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/checkly/puppeteer-examples.git"
},
"author": "Tim Nolet",
"license": "MIT",
"bugs": {
"url": "https://github.com/checkly/puppeteer-examples/issues"
},
"homepage": "https://github.com/checkly/puppeteer-examples#readme"
}