-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 792 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 792 Bytes
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
{
"name": "react-native-controls",
"version": "0.7.0",
"main": "index.js",
"keywords": [
"react",
"react-native",
"controls",
"components"
],
"scripts": {
"lint": "eslint lib/",
"lint-fix": "eslint --fix lib/",
"lint-watch": "esw -w lib/",
"validate": "npm ls"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.2.1",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2"
},
"pre-commit": [
"lint"
],
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}