-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
63
64
65
66
67
68
69
{
"name": "squint-cli",
"version": "2.1.4",
"description": "Squint makes visual reviews of web app releases easy",
"keywords": [
"puppeteer",
"blink diff",
"visual",
"diff",
"review",
"web",
"web app",
"squint"
],
"main": "dist/src/index.js",
"bin": {
"squint": "./dist/src/index.js"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf .tmp .squint",
"eslint": "eslint .",
"eslint:fix": "npm run eslint -- --fix",
"test": "npm run clean && jest --silent=false",
"updateReadmeHelp": "zx tools/updateReadmeHelp.mjs",
"http-server": "http-server"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/sharp": "^0.28.5",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"http-server": "^13.0.0",
"jest": "^27.0.6",
"np": "^7.5.0",
"prettier": "^2.3.2",
"sharp": "^0.28.3",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"zx": "^2.1.0"
},
"dependencies": {
"@sindresorhus/slugify": "^1.1.2",
"@types/glob": "^7.1.4",
"arg": "^5.0.0",
"blink-diff": "^1.0.13",
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"generic-pool": "^3.8.2",
"glob": "^7.1.7",
"lodash": "^4.17.21",
"p-queue": "^6.6.2",
"puppeteer": "^10.2.0"
}
}