forked from CodingZeal/redux-persist-sensitive-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.9 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": "redux-persist-sensitive-storage",
"version": "1.0.0",
"description": "redux-persist storage engine for react-native-sensitive-info",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier --write '**/*.js'",
"lint": "eslint '**/*.js' --max-warnings 0",
"precommit": "lint-staged",
"test": "jest --coverage",
"test:watch": "jest --watch",
"validate": "npm-run-all -p lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingZeal/redux-persist-sensitive-storage.git"
},
"keywords": [
"redux",
"redux-persist",
"redux-storage",
"redux-rehydrate",
"react-native",
"android",
"ios",
"keychain",
"shared-preferences"
],
"author": "Randy Coulman <randy@codingzeal.com> (http://open.codingzeal.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingZeal/redux-persist-sensitive-storage/issues"
},
"homepage": "https://github.com/CodingZeal/redux-persist-sensitive-storage#readme",
"peerDependencies": {
"react-native": "*",
"react-native-sensitive-info": "3.x - 5.x"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"eslint": "3.19.0",
"eslint-config-prettier": "^2.1.1",
"eslint-config-zeal": "^1.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^2.3.2",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"npm-run-all": "^4.0.2",
"prettier": "^1.4.4",
"react": "16.0.0-alpha.12",
"react-native": "^0.45.1",
"react-native-sensitive-info": "^5.1.0",
"testdouble": "^3.0.0"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "<rootDir>/test/setupTests.js"
},
"lint-staged": {
"*.js": "prettier --list-different"
}
}