-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
70 lines (70 loc) · 1.85 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": "react-native-redash",
"version": "0.0.0-development",
"description": "Utility library for React Native Reanimated",
"sideEffects": false,
"main": "lib/module/index.js",
"scripts": {
"lint": "eslint --ext .ts,.tsx . --max-warnings 0",
"tsc": "tsc --noEmit",
"test": "jest",
"ci": "yarn lint && yarn tsc && yarn test",
"prepare": "bob build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/wcandillon/redash.git"
},
"author": "William Candillon",
"license": "MIT",
"bugs": {
"url": "https://github.com/wcandillon/redash/issues"
},
"homepage": "https://github.com/wcandillon/redash#readme",
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": ">=2.0.0"
},
"devDependencies": {
"@react-native-community/bob": "^0.4.1",
"@types/color": "^3.0.0",
"@types/jest": "^25.1.4",
"@types/react": "*",
"@types/react-native": "0.63.20",
"babel-jest": "^24.9.0",
"babel-preset-expo": "^8.0.0",
"eslint": "^7.8.1",
"eslint-config-react-native-wcandillon": "3.6.3",
"jest": "^24.9.0",
"react": "^16.8.6",
"react-native": "^0.62.3",
"react-native-gesture-handler": "~1.5.0",
"react-native-reanimated": "~2.8.0",
"semantic-release": "^15.13.3",
"semantic-release-cli": "^4.1.2",
"typescript": "4.3.5"
},
"react-native": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"module",
"typescript"
]
},
"dependencies": {
"abs-svg-path": "^0.1.1",
"normalize-svg-path": "^1.0.1",
"parse-svg-path": "^0.1.2"
}
}