-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "croma-color-picker",
"version": "1.1.5",
"description": "Easy to use color picker for react native",
"main": "CromaColorPicker.js",
"scripts": {
"lint": "eslint .",
"prettier": "eslint . --fix"
},
"files": [
"CromaColorPicker.js"
],
"keywords": [
"react-native",
"react",
"Color picker"
],
"repository": {
"type": "git",
"url": "https://github.com/croma-app/croma-color-picker"
},
"homepage": "https://github.com/croma-app/croma-color-picker/blob/master/README.md",
"bugs": {
"url": "https://github.com/croma-app/croma-color-picker/issues"
},
"author": "Kamal Joshi <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-react-native-prettier": "^1.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13"
},
"dependencies": {
"pigment": "^0.1.0",
"react-native-platform-touchable": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}