forked from react-native-voice/voice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "react-native-voice",
"description": "React Native Native Voice library for iOS and Android",
"version": "0.4.0",
"author": "Sam Wenke <samwenke@gmail.com>",
"homepage": "https://github.com/react-native-community/react-native-voice",
"devDependencies": {
"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",
"pre-commit": "^1.2.2",
"prettier": "^1.12.0",
"lint-staged": "^7.2.0",
"babel-eslint": "^8.2.6",
"react": "16.4.2",
"react-native": "^0.56.0"
},
"keywords": [
"android",
"ios",
"react-native",
"speech",
"voice"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"yarn prettier",
"eslint --fix",
"git add"
]
},
"main": "src/index.js",
"peerDependencies": {
"react-native": ">=0.40.0"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git://github.com/react-native-community/react-native-voice.git"
},
"scripts": {
"lint": "eslint src --max-warnings=0",
"lint:staged": "lint-staged",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 100"
}
}