-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@rimiti/react-native-toastify",
"description": "React Native cross-plateform (iOS/Android) toast notification component highly customizable.",
"version": "1.4.0",
"author": "Dimitri DO BAIRRO <[email protected]>",
"homepage": "https://github.com/rimiti/react-native-toastify/blob/master/README.md",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"clean": "rm -rf coverage dist tmp",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"test": "npm run test-only",
"test-only": "jest --coverage --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"build": "babel src/ -d dist/",
"build:watch": "babel --watch src/ -d dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/rimiti/react-native-toastify.git"
},
"keywords": [
"toast",
"toastify",
"popup",
"notification",
"react-native toast",
"react-native notification",
"react-native modal",
"react-native cross toast",
"react-native",
"react-native-toastify",
"react-component",
"ios",
"android"
],
"dependencies": {
"prop-types": "15.x"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"react-native": ">= 0.56 < 1"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.11.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.2.2",
"babel-preset-react-native": "^4.0.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "7.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.5",
"jest": "26.2.2",
"jest-react-native": "^18.0.0",
"metro-react-native-babel-preset": "0.61.0",
"react-test-renderer": "16.13.1",
"schedule": "^0.5.0"
},
"jest": {
"setupFiles": [
"./config/enzyme.js"
],
"preset": "react-native",
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 95,
"statements": 96
}
},
"moduleFileExtensions": [
"js"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js"
]
}
}