-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
78 lines (78 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
71
72
73
74
75
76
77
78
{
"name": "@expo/react-native-action-sheet",
"version": "4.1.0",
"description": "A cross-platform ActionSheet for React Native",
"react-native": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"files": [
"lib"
],
"scripts": {
"prepare": "bob build",
"build": "bob build",
"type-check": "tsc --noEmit",
"lint": "eslint . --fix",
"lint-check": "eslint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/react-native-action-sheet.git"
},
"keywords": [
"expo",
"react-native",
"action-sheet"
],
"author": "Jesse Ruder <jesse@sixfivezero.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/react-native-action-sheet/issues"
},
"homepage": "https://github.com/expo/react-native-action-sheet",
"devDependencies": {
"@react-native-community/bob": "^0.6.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"eslint": "^7.32.0",
"eslint-config-universe": "^8.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^2.3.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.9",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint",
"git add"
]
},
"dependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"hoist-non-react-statics": "^3.3.0"
}
}