UNPKG

2.22 kBJSONView Raw
1{
2 "name": "@expo/react-native-action-sheet",
3 "version": "3.9.0",
4 "description": "A cross-platform ActionSheet for React Native",
5 "react-native": "lib/module/index.js",
6 "types": "lib/typescript/index.d.ts",
7 "main": "lib/commonjs/index.js",
8 "module": "lib/module/index.js",
9 "files": [
10 "lib"
11 ],
12 "scripts": {
13 "prepare": "bob build",
14 "build": "bob build",
15 "type-check": "tsc --noEmit",
16 "lint": "eslint . --ext .ts,.tsx --fix",
17 "fmt": "prettier --write \"{src,example}/**/*.{ts,tsx}\"",
18 "semantic-release": "semantic-release"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/expo/react-native-action-sheet.git"
23 },
24 "keywords": [
25 "expo",
26 "react-native",
27 "action-sheet"
28 ],
29 "author": "Jesse Ruder <jesse@sixfivezero.net>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/expo/react-native-action-sheet/issues"
33 },
34 "homepage": "https://github.com/expo/react-native-action-sheet",
35 "devDependencies": {
36 "@react-native-community/bob": "^0.6.1",
37 "@react-native-community/eslint-config": "^0.0.5",
38 "@semantic-release/changelog": "^3.0.5",
39 "@semantic-release/git": "^7.0.18",
40 "@types/react": "^16.8.23",
41 "@types/react-native": "^0.57.65",
42 "@typescript-eslint/eslint-plugin": "^1.12.0",
43 "@typescript-eslint/parser": "^1.12.0",
44 "eslint": "^6.0.1",
45 "eslint-config-prettier": "^6.0.0",
46 "eslint-plugin-prettier": "3.1.0",
47 "husky": "^3.0.0",
48 "lint-staged": "^9.2.0",
49 "prettier": "^1.18.2",
50 "react": "^16.8.6",
51 "react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
52 "semantic-release": "^17.3.0",
53 "typescript": "^3.5.3"
54 },
55 "peerDependencies": {
56 "react": ">=16.3.0"
57 },
58 "@react-native-community/bob": {
59 "source": "src",
60 "output": "lib",
61 "targets": [
62 "commonjs",
63 "module",
64 "typescript"
65 ]
66 },
67 "husky": {
68 "hooks": {
69 "pre-commit": "lint-staged"
70 }
71 },
72 "lint-staged": {
73 "*.{js,ts,tsx}": [
74 "yarn lint",
75 "yarn fmt",
76 "git add"
77 ]
78 },
79 "dependencies": {
80 "@types/hoist-non-react-statics": "^3.3.1",
81 "hoist-non-react-statics": "^3.3.0"
82 }
83}