-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "react-native-redash",
"version": "0.0.0-development",
"description": "Utility library for React Native Reanimated",
"main": "lib/module/index.js",
"scripts": {
"lint": "eslint src/**/*",
"tsc": "tsc --noEmit",
"test": "npm run lint && npm run",
"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": "*"
},
"devDependencies": {
"@react-native-community/bob": "^0.4.1",
"@types/react": "^16.8.15",
"@types/react-native": "^0.57.51",
"eslint": "^5.16.0",
"eslint-config-react-native-wcandillon": "^1.0.6",
"react": "^16.8.6",
"react-native": "^0.59.5",
"react-native-gesture-handler": "^1.2.1",
"react-native-reanimated": "^1.0.1",
"semantic-release": "^15.13.3",
"semantic-release-cli": "^4.1.2"
},
"react-native": "src/index.ts",
"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"
]
}
}