forked from jaredpalmer/cypress-image-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "@sosog/cypress-image-snapshot",
"version": "6.0.0",
"description": "Cypress bindings for jest-image-snapshot.",
"repository": "https://github.com/sosog/cypress-image-snapshot",
"author": "Jack Cross <jack@palmer.net>",
"contributors": [
"Ioseb Gvritishvili <sosogvritishvili@gmail.com>"
],
"license": "MIT",
"files": [
"*.js"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prebuild": "rimraf *.js",
"build": "babel src --out-dir .",
"test": "jest",
"lint": "eslint src",
"prepublish": "npm run build",
"changeset": "changeset",
"release": "changeset publish",
"prepare": "husky install"
},
"dependencies": {
"chalk": "5.2.0",
"fs-extra": "11.1.0",
"glob": "^8.0.0",
"jest-image-snapshot": "5.0.0",
"pkg-dir": "^5.0.0",
"term-img": "6.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "^2.13.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.1.3",
"eslint-plugin-import": "^2.14.0",
"husky": "^8.0.2",
"jest": "^23.6.0",
"prettier": "2.8.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2"
},
"peerDependencies": {
"cypress": ">=10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/examples/",
"<rootDir>/node_modules/"
]
}
}