-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "react-native-redux-toast",
"version": "1.0.3",
"description": "Cross platform implementation of Android's toast component. Easy to customize and integrate with redux. 100% written in JS.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src && eslint index.js",
"test": "jest",
"coverage": "jest --coverage",
"build": "babel index.js -d lib && babel src -d lib/src",
"prepublish": "npm run build",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.js$ | xargs eslint",
"precommit": "npm run lint-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wolox/react-native-redux-toast.git"
},
"keywords": [
"react-native",
"toast",
"redux",
"javascript",
"android",
"ios"
],
"author": "Sebastian Balay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wolox/react-native-redux-toast/issues"
},
"homepage": "https://github.com/Wolox/react-native-redux-toast",
"dependencies": {
"prop-types": "^15.5.10",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.6.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"husky": "^0.13.3",
"jest": "^19.0.2",
"prettier": "^1.1.0",
"prettier-eslint": "^5.1.0",
"react": "^15.5.4",
"react-native": "^0.43.3",
"react-redux": "^5.0.4"
},
"peerDependencies": {
"react": "^15.5.4",
"react-native": "^0.43.3",
"react-redux": "^5.0.4",
"redux": "^3.6.0"
}
}