-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "between-pages",
"version": "1.0.8",
"description": "A library to help you animate and improve the user experience when is moved between pages with animations on react native apps.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean; npx tsc --build",
"clean": "npx tsc --build --clean",
"tsc": "tsc -p tsconfig.json",
"dev": "npm run build && node -e require('./src/test.js')",
"release": "npm run clean && npm run build && npm version patch && git push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HubertRyanOfficial/between-pages.git"
},
"keywords": [
"reactnative",
"animations",
"android",
"ios",
"pages",
"routes"
],
"peerDependencies": {
"react": "*",
"react-native": ">=0.59"
},
"author": "Hubert Ryan ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/HubertRyanOfficial/between-pages/issues"
},
"homepage": "https://github.com/HubertRyanOfficial/between-pages#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.7",
"prettier": "^2.8.0",
"react": "^18.1.0",
"react-native": "^0.70.6",
"typescript": "^4.9.3"
}
}