-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "react-native-grid-component",
"version": "2.0.1",
"description": "React native grid component",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint --ignore-path .gitignore **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phil-r/react-native-grid-component.git"
},
"keywords": [
"react",
"native",
"react-native",
"grid",
"table",
"cells",
"rows",
"columns",
"component"
],
"author": "Phil Rukin <philipp@rukin.me> (https://rukin.me)",
"license": "ISC",
"bugs": {
"url": "https://github.com/phil-r/react-native-grid-component/issues"
},
"homepage": "https://github.com/phil-r/react-native-grid-component#readme",
"peerDependencies": {
"react": ">=16.3.0",
"react-native": ">=0.55.0"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^3.0.0",
"prettier": "^1.11.1",
"pretty-quick": "^2.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}