-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 KB
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
{
"name": "rn-bounceable",
"version": "1.2.0",
"description": "Native bounceable effect for any React Native component. Built with Reanimated. Compatible with Expo.",
"author": "Batyr (dev@batyr.io)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc && echo Build completed!",
"postbuild": "prettier --write ./lib",
"clean": "rm -rf ./node_modules ./package-lock.json && yarn",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"release:github": "npm run build && dotenv release-it",
"release:npm:public": "npm run build && npm publish --access public",
"release:npm:private": "npm run build && npm publish",
"publish:npm": "npm run build && npm publish",
"publish:npm:next": "npm run build && npm publish --tag next"
},
"keywords": [
"react",
"react-native",
"expo",
"bounceable",
"reanimated"
],
"files": [
"lib"
],
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": ">= 1.4.x",
"react-native-reanimated": ">= 2.x.x"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@tsconfig/react-native": "^2.0.2",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"dotenv-cli": "^6.0.0",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "^0.69.5",
"react-native-gesture-handler": "^2.6.0",
"react-native-reanimated": "^2.10.0",
"typescript": "^4.8.2"
},
"license": "MIT"
}