-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "react-eyedrop",
"version": "5.5.1",
"description": "A reusable ColorPick EyeDropper written in React & TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Manjodh \"Jodhman\" Singh",
"license": "MIT",
"keywords": [
"react",
"eye",
"drop",
"dropper",
"color",
"picker",
"javascript",
"typescript",
"types"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/jodhman/react-eyedrop"
},
"homepage": "https://github.com/jodhman/react-eyedrop/blob/master/README.md",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "yarn run eslint src --fix"
},
"dependencies": {
"get-canvas-pixel-color": "^2.0.0",
"html2canvas": "^1.0.0-rc.5"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.2.0",
"lodash": "^4.17.15",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.5.2",
"typescript": "^4.0.0"
},
"peerDependencies": {
"react": ">=16.12.0"
}
}