-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "react-native-toastboard",
"version": "2.0.4",
"description": "Toast feedback messages for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./src",
"lint:ts": "./node_modules/.bin/tsc --project tsconfig.json",
"test": "jest",
"build:ts": "node_modules/.bin/tsc -p ./tsconfig.build.json",
"prepublishOnly": "yarn build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MAKARD/react-native-toastboard.git"
},
"author": "Makarenko Dmitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAKARD/react-native-toastboard/issues"
},
"keywords": [
"native",
"react",
"react-native",
"toast",
"toastboard",
"toaster",
"notifications"
],
"homepage": "https://github.com/MAKARD/react-native-toastboard#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "0.76.4",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "18.2.6",
"@typescript-eslint/eslint-plugin": "7.x",
"@typescript-eslint/parser": "7.x",
"babel-jest": "^29.7.0",
"eslint": "8.x",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"react": "18.3.1",
"react-native": "^0.76.5",
"react-test-renderer": "18.3.1",
"typescript": "*"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {}
}