This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 2.12 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
{
"name": "reanimated-confetti",
"version": "0.0.5",
"description": "Confetti shower component",
"keywords": [
"react-native",
"reanimated",
"confetti"
],
"scripts": {
"lint": "eslint .",
"prepare": "bob build",
"publish:patch": "npm version patch && git push --follow-tags && npm publish --access public",
"publish:minor": "npm version minor && git push --follow-tags && npm publish --access public",
"publish:major": "npm version major && git push --follow-tags && npm publish --access public",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:android": "react-native run-android --root example/",
"start:ios": "react-native run-ios --project-path example/ios --scheme example"
},
"author": "Felippe R. Puhle",
"repository": {
"type": "git",
"url": "git+https://github.com/felippepuhle/react-native-reanimated-confetti.git"
},
"license": "MIT",
"main": "lib/module/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib/",
"src/"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
]
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-reanimated": "*",
"react-native-svg": "*"
},
"devDependencies": {
"@react-native-community/bob": "^0.8.0",
"@types/react": "^16.9.19",
"@types/react-native": "^0.61.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-standard": "^4.0.1",
"metro-react-native-babel-preset": "0.54.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-native": "^0.60.5",
"react-native-reanimated": "^1.7.0",
"react-native-svg": "^11.0.1",
"typescript": "^3.7.5"
}
}