forked from tadinski/react-palette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "@lauriys/react-palette",
"version": "1.0.5",
"description": "",
"main": "dist/react-palette.js",
"umd:main": "dist/react-palette.umd.js",
"module": "dist/react-palette.mjs",
"browser": "dist/react-palette.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"build": "microbundle",
"preversion": "npm test && npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"react",
"palette",
"dominant color"
],
"author": "Leonardo Luiz <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/lauriys/react-palette.git"
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"react": "^16.8 || 17 || 18",
"react-dom": "^16.8 || 17 || 18"
},
"dependencies": {
"jpeg-js": "^0.4.4",
"lodash.camelcase": "^4.3.0",
"lodash.invoke": "^4.5.2",
"node-vibrant": "^3.1.4"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/react": "^16.8",
"coveralls": "^3.1.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"microbundle": "^0.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.7"
},
"overrides": {
"jpeg-js@<0.4.4": "0.4.4"
}
}