-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "react-native-fabric",
"description": "A React Native library for Fabric, Crashlytics and Answers",
"version": "0.5.2",
"author": {
"name": "Cory Smith",
"email": "cory.m.smith@gmail.com"
},
"bugs": {
"url": "https://github.com/corymsmith/react-native-fabric/issues"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-eslint": "^8.2.6",
"eslint": "^5.3.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.81.0",
"generate-changelog": "^1.7.1",
"husky": "^0.14.3",
"idx": "^2.4.0",
"minimist": "^1.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3",
"simple-git": "^1.102.0",
"lint-staged": "^7.2.0",
"react": "16.8.6",
"react-native": "^0.60.0"
},
"homepage": "https://github.com/corymsmith/react-native-fabric",
"keywords": [
"android",
"answers",
"crashlytics",
"fabric",
"ios",
"mobile",
"react",
"react-component",
"react-native",
"react-native-component"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
]
},
"main": "src/index.js",
"nativePackage": true,
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git://github.com/corymsmith/react-native-fabric.git"
},
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint src",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100",
"release:major": "node ./changelog --major && npm version major && git push origin && git push origin --follow-tags",
"release:minor": "node ./changelog --minor && npm version minor && git push origin && git push origin --follow-tags",
"release:patch": "node ./changelog --patch && npm version patch && git push origin && git push origin --follow-tags",
"test": "flow"
},
"typings": "typings/react-native-fabric.d.ts"
}