-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "@react-native-community/toolbar-android",
"version": "0.2.1",
"description": "A React Native Component for Android Toolbar",
"keywords": [
"toolbar-android",
"react native",
"react-native"
],
"homepage": "https://github.com/react-native-community/toolbar-android#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/toolbar-android.git"
},
"license": "MIT",
"author": "Connectdotz <[email protected]>",
"main": "js/ToolbarAndroid",
"types": "index.d.ts",
"scripts": {
"pack:npm": "npm pack",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "yarn test:eslint && yarn test:flow && yarn test:jest && yarn test:tsc",
"test:eslint": "eslint .",
"test:flow": "flow check",
"test:jest": "jest",
"test:tsc":"tsc --noEmit"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"parser": "flow",
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@react-native-community/eslint-config":"0.0.7",
"@types/react-native": "^0.61.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.3",
"eslint": "5.13.0",
"eslint-plugin-prettier": "^3.1.2",
"flow-bin": "^0.86.0",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "0.51.1",
"prettier": "^1.16.4",
"react": "16.6.3",
"react-native": "0.58.4",
"react-test-renderer": "^16.8.6",
"typescript": "3.7.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/react-native-community/toolbar-android/issues"
},
"directories": {
"doc": "doc",
"example": "example"
}
}