This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
69 lines (69 loc) · 1.71 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
{
"name": "react-navigation-animated-switch",
"version": "0.4.1",
"description": "Animated switch for React Navigation",
"main": "lib/commonjs/index.js",
"react-native": "lib/module/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"author": "",
"license": "MIT",
"files": [
"src",
"lib"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "bob build",
"release": "release-it",
"typescript": "tsc --noEmit",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "8.2.0",
"@react-native-community/bob": "0.7.0",
"@release-it/conventional-changelog": "1.1.0",
"@types/react": "16.9.16",
"@types/react-native": "0.60.25",
"commitlint": "8.2.0",
"eslint": "^6.7.2",
"eslint-config-satya164": "^3.1.2",
"husky": "3.1.0",
"prettier": "^1.19.1",
"react": "~16.9.0",
"react-native": "~0.61.5",
"react-native-reanimated": "~1.4.0",
"react-navigation": "^4.0.10",
"release-it": "12.4.3",
"typescript": "3.7.3"
},
"peerDependencies": {
"react-navigation": "^4.0.0",
"react": "*",
"react-native": "*",
"react-native-reanimated": "^1.0.0"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"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"
]
}
}