forked from img-mapper/img-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.29 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
{
"name": "react-img-mapper-extended",
"version": "1.0.0",
"description": "React Component to highlight interactive zones in images",
"keywords": [
"react",
"react-img-mapper",
"react-image-mapper",
"img-mapper",
"image-mapper",
"img mapper",
"image mapper"
],
"homepage": "https://img-mapper.github.io/react-docs",
"bugs": {
"email": "juansediaz123@gmail.com",
"url": "https://github.com/juansedo/react-img-mapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/juansedo/react-img-mapper"
},
"license": "MIT",
"author": "Juan Sebastián Díaz",
"type": "commonjs",
"main": "dist/ImageMapper.js",
"types": "dist/ImageMapper.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .tsx",
"lint-fix": "eslint . --ext .tsx --fix",
"pre-commit": "npx husky add .husky/pre-commit \"npx lint-staged\"",
"prepublishOnly": "npm run build",
"prepare": "npm run build && husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"react-fast-compare": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@types/node": "^16.7.6",
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-flowtype": "^5.9.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.2"
},
"peerDependencies": {
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
}
}