-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
95 lines (95 loc) · 1.99 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cypress-image-snapshot",
"version": "4.0.1",
"description": "Cypress bindings for jest-image-snapshot.",
"repository": "https://github.com/palmerhq/cypress-image-snapshot",
"author": "Jack Cross <[email protected]>",
"license": "MIT",
"files": [
"*.js"
],
"engines": {
"node": ">=8"
},
"scripts": {
"prebuild": "rimraf *.js",
"build": "babel src --out-dir .",
"test": "jest",
"lint": "eslint src",
"prepublish": "npm run build",
"changeset": "changeset",
"release": "changeset publish"
},
"dependencies": {
"chalk": "^2.4.1",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"jest-image-snapshot": "4.2.0",
"pkg-dir": "^3.0.0",
"term-img": "^4.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.2.8",
"@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": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-cypress": "^2.1.3",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"prettier": "1.15.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"cypress": "^4.5.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"cypress"
],
"env": {
"cypress/globals": true
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8.0"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/examples/",
"<rootDir>/node_modules/"
]
}
}