forked from javierbrea/cypress-localstorage-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "cypress-localstorage-commands",
"version": "1.1.0",
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
"keywords": [
"cypress",
"local-storage",
"localstorage",
"methods",
"utilities",
"commands",
"testing-tools",
"testing",
"persistence"
],
"author": "Javier Brea",
"license": "MIT",
"repository": "https://github.com/javierbrea/cypress-localstorage-commands",
"files": [
"src"
],
"main": "index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test test-acceptance/app/src test-acceptance/app/cypress",
"lint-staged": "lint-staged",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.7",
"eslint": "6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"sinon": "^7.5.0"
},
"peerDependencies": {
"cypress": "^2.1.0 || ^3.0.0"
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint",
"test-acceptance/app/src/**/*.js": "eslint",
"test-acceptance/app/cypress/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}