-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.27 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
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
94
95
96
{
"name": "color-thief-react",
"version": "0.0.0",
"description": "A React component with hooks for Color Thief. Grab color palette from an image with javascript",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"author": "Jonathan Célio",
"license": "ISC",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --collectCoverage",
"test:ci": "jest --collectCoverage && codecov"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"dependencies": {
"color-convert": "^2.0.1",
"colorthief": "2.3.2",
"prop-types": "15.7.2",
"tslib": "2.3.0",
"use-current-effect": "2.1.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@testing-library/react": "10.4.9",
"@types/color-convert": "^2.0.0",
"@types/jest": "26.0.20",
"@types/react": "16.9.46",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"canvas": "2.6.1",
"codecov": "3.8.2",
"coveralls": "3.1.0",
"eslint": "7.20.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.21.4",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"jest": "26.4.0",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"semantic-release": "17.2.3",
"ts-jest": "26.2.0",
"typescript": "4.3.5"
},
"keywords": [
"color-thief-react",
"react-color-thief",
"colorthiefreact",
"color-thief",
"color-thief-react-hook",
"colorthief"
],
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"master",
{
"name": "beta",
"channel": "beta",
"prerelease": "beta"
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
}
}