-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "react-native-toast-banner",
"version": "1.1.0",
"description": "An animating banner fully based on Javascript",
"author": "Bright Lee",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/benevbright/react-native-toast-banner.git"
},
"keywords": [
"react-native",
"banner",
"toast",
"react",
"notification"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prettier": "prettier --write src/* index.ts README.md",
"flowgen": "sh flow.sh",
"lint": "eslint --ext '.js,.ts,.tsx' ./src index.ts",
"build": "tsc",
"clean": "rm -rf lib",
"build-publish": "npm run clean && npm run lint && npm run build && npm run flowgen && npm publish"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.59",
"react-native-safe-area-context": "*"
},
"dependencies": {},
"devDependencies": {
"@types/react": "^16.9.17",
"@types/react-native": "^0.60.25",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"flowgen": "^1.10.0",
"prettier": "^1.19.1",
"react-native-safe-area-context": "^4.2.1",
"typescript": "^3.7.4"
}
}