-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 775 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 775 Bytes
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
{
"name": "headless-devtools",
"description": "Lets you use Chrome DevTools from code",
"version": "2.0.1",
"author": {
"name": "cowchimp",
"url": "http://blog.cowchimp.com"
},
"repository": "cowchimp/headless-devtools",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm run test"
},
"dependencies": {
"chrome-devtools-frontend": "1.0.699835"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"filesize": "^6.1.0",
"fs-extra": "^9.0.0",
"jest": "^25.1.0",
"prettier": "1.19.1",
"puppeteer": "2.1.1"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}