forked from calintamas/react-native-toast-message
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"name": "react-native-toast-message",
"version": "1.3.1",
"description": "Toast message component for React Native",
"main": "index.js",
"scripts": {
"hooks:install": "node ./node_modules/husky/bin/install",
"lint": "eslint . --ext=jsx --ext=js",
"lint-staged": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"react-native",
"toast"
],
"author": "Calin Tamas <calinntamas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/calintamas/react-native-toast-message.git"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^3.1.0",
"lint-staged": "^10.2.2",
"prettier": "2.0.5"
}
}