forked from christopherwk210/site-scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 913 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
{
"name": "site-scan",
"version": "1.5.0",
"description": "CLI for capturing website screenshots",
"main": "./lib/site-scan.js",
"scripts": {
"start": "node ./lib/site-scan.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherwk210/site-scan.git"
},
"keywords": [
"cli",
"command",
"site",
"scan",
"chrome",
"screenshot"
],
"bin": {
"sitescan": "./lib/site-scan.js",
"ss": "./lib/site-scan.js"
},
"preferGlobal": true,
"author": "Chris Anselmo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/christopherwk210/site-scan/issues"
},
"homepage": "https://github.com/christopherwk210/site-scan#readme",
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"puppeteer": "^1.9.0"
},
"engineStrict": true,
"engines": {
"node": ">= 7.6"
}
}