forked from osdnk/react-native-reanimated-bottom-sheet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.02 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": "reanimated-bottom-sheet",
"version": "1.0.0-alpha.22",
"description": "Bottom sheet component",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.ts,.tsx .",
"typescript": "tsc --noEmit",
"release": "release-it",
"prepare": "bob build"
},
"keywords": [
"react-native",
"bottom-sheet",
"reanimated",
"gesture",
"handler"
],
"files": [
"lib/",
"src/",
"reanimated-bottom-sheet.d.ts",
"README.md"
],
"author": "Michał Osadnik",
"repository": {
"type": "git",
"url": "git+https://github.com/osdnk/reanimated-bottom-sheet.git"
},
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"@react-native-community/bob": "^0.9.3",
"@release-it/conventional-changelog": "^1.1.0",
"@types/react": "^16.8.14",
"@types/react-native": "^0.57.50",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-eslint": "^10.0.1",
"commitlint": "^7.5.2",
"conventional-changelog-cli": "^2.0.12",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"prettier": "^1.17.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-reanimated": "^1.0.1",
"release-it": "^12.4.3",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn typescript",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}