-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "redux-react-native-session",
"version": "1.0.7",
"description": "Keep your session sync with the storage and redux",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && babel src --out-dir dist",
"test": "jest /src/__tests__",
"test:cover": "npm run test -- --coverage",
"test:cover:CI": "npm run test:cover && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"lint": "eslint src",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bernabe9/redux-react-native-session"
},
"keywords": [
"redux",
"react",
"react native",
"session",
"authentication",
"react-router"
],
"author": "Bernabe Gonzalez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bernabe9/redux-react-native-session/issues"
},
"homepage": "https://github.com/bernabe9/redux-react-native-session#readme",
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-jest": "18.0.0",
"babel-loader": "6.3.0",
"babel-polyfill": "6.23.0",
"babel-preset-latest": "6.22.0",
"babel-preset-react-native": "^4.0.1",
"babel-preset-stage-1": "6.22.0",
"babel-register": "6.23.0",
"coveralls": "2.11.16",
"eslint": "3.15.0",
"eslint-plugin-import": "2.2.0",
"jest": "^18.1.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"redux": "3.6.0",
"rimraf": "2.5.4",
"webpack": "2.2.1"
},
"dependencies": {
"@react-native-community/async-storage": "^1.4.2",
"immutable": "3.8.1"
},
"peerDependencies": {
"react-native": ">=0.44.0",
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"redux": "^3.0.0"
}
}