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
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
48
49
{
"name": "react-native-toast-message",
"version": "1.4.9",
"description": "Toast message component for React Native",
"main": "index.js",
"scripts": {
"hooks:install": "node ./node_modules/husky/bin/install",
"lint": "./node_modules/.bin/eslint . --ext=jsx --ext=js",
"lint-staged": "./node_modules/.bin/lint-staged",
"prettier": "./node_modules/.bin/prettier . --write",
"test": "./node_modules/.bin/jest"
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint"
]
},
"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": {
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.20",
"eslint-config-backpacker-react": "^0.4.0",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"metro-react-native-babel-preset": "^0.66.0",
"prettier": "2.3.2",
"react-test-renderer": "^17.0.1"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}