-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "react-drawarea",
"version": "1.1.2",
"description": "React components to draw with mouse or touch events",
"author": {
"name": "Borja González",
"url": "https://github.com/bgonp"
},
"repository": "git+https://github.com/bgonp/react-drawarea.git",
"bugs": "git+https://github.com/bgonp/react-drawarea/issues",
"homepage": "git+https://github.com/bgonp/react-drawarea.git#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/index.js",
"build/index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc && node ./esbuild.js",
"prepare": "npm run build"
},
"keywords": [],
"license": "GPL-3.0",
"devDependencies": {
"@types/prop-types": "15.7.3",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"esbuild": "0.9.3",
"eslint": "7.21.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"prop-types": ">=15.6.2",
"react": ">=16.8.0",
"typescript": "4.2.3"
},
"peerDependencies": {
"prop-types": ">=15.6.2",
"react": ">=16.8.0"
}
}