-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "root",
"private": true,
"description": "Visual testing tool for web",
"keywords": [
"vist",
"regression",
"web",
"vision",
"visual",
"record",
"replay",
"test"
],
"author": "letshare <brucecai2012@gmail.com>",
"bugs": "https://github.com/vistjs/vist/issues",
"homepage": "https://github.com/vistjs/vist#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vistjs/vist"
},
"scripts": {
"postinstall": "husky install",
"lint": "eslint 'packages/**/*.{js,ts}' --quiet --fix"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint"
]
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"husky": "^7.0.4",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^14.18.0 || >=16.0.0",
"pnpm": ">=7"
}
}