forked from jeanverster/react-native-styled-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "react-native-styled-toast",
"version": "1.0.15",
"description": "A themeable toast component for React Native.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn format && rm -rf dist && tsc",
"release": "semantic-release --repository-url [email protected]:${TRAVIS_REPO_SLUG}",
"format": "yarn prettier -- --write",
"prepublishOnly": "yarn build",
"prettier": "prettier \"**/*.+(js|jsx|json|css|scss|ts|tsx)\"",
"test": "jest"
},
"keywords": [
"toast",
"toaster",
"react-native",
"notifications",
"react-native-component",
"react-native-toast"
],
"author": "Jean Verster",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.x",
"react-native": "^0.60.x",
"styled-components": "^4.x",
"styled-system": "^5.x"
},
"repository": {
"type": "git",
"url": "https://github.com/jeanverster/react-native-styled-toast"
},
"devDependencies": {
"@testing-library/react-native": "^4.1.0",
"@types/jest": "^24.0.20",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.3",
"prettier": "^1.18.2",
"react-test-renderer": "16.8.3",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-push": "tsc --noEmit --skipLibCheck"
}
},
"dependencies": {}
}