This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "@react-native-toolkit/triangle",
"version": "0.0.1",
"description": "Draw geometrically accurate triangles in React Native",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"prepare": "bob build"
},
"keywords": [
"react-native",
"triangle",
"triangle-view",
"geometry"
],
"author": "DaniAkash <[email protected]> (https://github.com/DaniAkash)",
"repository": "react-native-toolkit/react-native-triangle-view",
"license": "MIT",
"peerDependencies": {
"react-native": "x"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"copyFlow": true
}
],
"module",
"typescript"
]
},
"devDependencies": {
"@react-native-community/bob": "^0.14.5",
"@react-native-community/eslint-config": "^1.1.0",
"@testing-library/react-native": "^5.0.3",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.12",
"@types/react-test-renderer": "^16.9.2",
"eslint": "^7.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-tsc": "^1.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.3"
}
}