-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
106 lines (106 loc) · 2.62 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
97
98
99
100
101
102
103
104
105
106
{
"name": "react-image-hotspots",
"version": "1.5.0",
"description": "React component for rendering images with hotspots",
"main": "dist/ImageHotspots.js",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"pretest": "standard",
"test": "jest",
"lint": "standard --fix",
"prebuild": "rm -rf dist",
"build": "babel ./src --out-dir dist -s inline",
"postbuild": "rm -rf dist/*.test.js && tsc",
"build:storybook": "storybook build -c .storybook -o docs",
"start": "storybook dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipecorrea/react-image-hotspots.git"
},
"keywords": [
"react",
"component",
"image",
"picture",
"photo",
"control",
"zoom",
"magnify",
"minimap",
"hotspot"
],
"author": "Filipe Corrêa <filipecorrea@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/filipecorrea/react-image-hotspots/issues"
},
"homepage": "https://github.com/filipecorrea/react-image-hotspots#readme",
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.26.3",
"@storybook/addon-actions": "8.5.2",
"@storybook/addon-controls": "8.4.7",
"@storybook/addon-essentials": "8.0.10",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/react": "8.5.0",
"@storybook/react-webpack5": "8.0.10",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "16.2.0",
"babel-eslint": "10.1.0",
"babel-loader": "9.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"standard": "16.0.4",
"storybook": "8.4.7",
"typescript": "5.7.2",
"webpack": "5.97.1"
},
"peerDependencies": {
"react": "18.2.0"
},
"standard": {
"env": [
"jest"
],
"parser": "babel-eslint",
"ignore": [
"docs/"
]
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.(css|sass|scss|less)$": "<rootDir>/mock/empty-module.js",
"^.+\\.(png|jpg|jpeg|gif)$": "<rootDir>/mock/empty-module.js"
},
"testPathIgnorePatterns": [
"node_modules",
"dist",
"docs"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}