-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.48 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "native-color-picker",
"version": "2.0.0-beta.1",
"description": "Color picker for React Native",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "npm run clean && npm run prettier && npm run lint && npm run build",
"clean": "rimraf lib/*",
"build": "tsc",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"lint": "eslint --fix 'src/**/*.{tsx,ts}'",
"prettier": "prettier --write 'src/**/*.{tsx,ts}'",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/native-ly/native-color-picker.git"
},
"keywords": [
"react",
"react-native",
"colors",
"picker",
"component",
"library",
"expo"
],
"bugs": {
"url": "https://github.com/native-ly/native-color-picker/issues"
},
"homepage": "https://github.com/native-ly/native-color-picker#readme",
"dependencies": {
"color": "^3.1.3",
"color-sort": "^0.0.1",
"expo-linear-gradient": "^8.3.1",
"native-icons": "^1.1.0",
"react-native-linear-gradient": "^2.5.6"
},
"devDependencies": {
"@testing-library/jest-native": "^3.4.2",
"@testing-library/react-native": "^7.0.2",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.49",
"@types/react-native": "^0.63.22",
"@types/react-native-vector-icons": "^6.4.6",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.9.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-native": "^0.62.1",
"react-test-renderer": "^16.13.1",
"semantic-release": "^17.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"npm run prettier",
"npm run lint"
]
}
}