-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "paparazzi-cli",
"version": "0.7.0",
"engines": {
"node": ">=16.0.0"
},
"description": "CLI tool to snap all the angles of your website",
"main": "./dist/lib/index.js",
"author": "Edward Dobson",
"license": "MIT",
"repository": "https://github.com/GodlikePenguin/Paparazzi",
"keywords": [
"puppeteer",
"screenshot",
"cli"
],
"bin": "bin/run",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"bin": "paparazzi-cli",
"default": ".",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint **/*.ts"
},
"dependencies": {
"@oclif/core": "^1.9.3",
"@oclif/parser": "^3.8.7",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"playwright": "^1.23.2",
"ts-node": "^10.8.2"
},
"devDependencies": {
"@types/jest": "^28.1.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^28.1.1",
"jest-mock-extended": "^2.0.6",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}