This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "react-native-fast-animations",
"version": "0.0.4",
"description": "React Native animations via Core Animation or RenderThread API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react-native"
],
"author": "ex3ndr",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p ./src",
"dev": "cd example && yarn && cd .. && yarn build && yarn dev:pods && concurrently --kill-others 'yarn dev:lib' 'yarn dev:example' 'yarn dev:bundler'",
"dev:lib": "tsc -p ./src -w",
"dev:example": "cd example && rm -rf build && ../node_modules/.bin/tsc -w",
"dev:bundler": "cd example && yarn react-native start",
"dev:pods": "cd example/ios && pod install"
},
"bugs": {
"url": "https://github.com/openland/react-native-fast-animations/issues"
},
"homepage": "https://github.com/openland/react-native-fast-animations#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openland/react-native-fast-animations.git"
},
"peerDependencies": {
"@babel/runtime": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react-native": "0.60.8",
"@types/uuid": "^3.4.7",
"concurrently": "^5.1.0",
"journey-tslint": "^1.0.0",
"tslint": "5.19.0",
"tslint-config-standard": "8.0.1",
"tslint-react": "4.0.0",
"typescript": "3.5.3"
},
"dependencies": {
"uuid": "^3.4.0"
},
"files": [
"android",
"ios",
"src",
"dist",
"tslint.json",
"*.md",
"*.podspec",
"LICENSE"
]
}