forked from overlapmedia/imagemapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "@overlapmedia/imagemapper",
"version": "1.0.13",
"description": "Adds SVG drawing capability (rectangles, circles, ellipses and polygons) on top of your image to let you make image maps",
"license": "MIT",
"repository": "overlapmedia/imagemapper",
"author": "Arve Waltin",
"type": "module",
"exports": "./index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run test & npm run jsdoc2md & webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"demo": "webpack serve --config ./examples/node/webpack.config.js",
"jsdoc2md": "jsdoc2md -t readme.hbs index.js src/*.js > readme.md"
},
"dependencies": {
"xstate": "^4.23.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.2.3",
"jsdoc-to-markdown": "^7.1.0",
"webpack": "^5.49.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"keywords": [
"image map",
"image mapper",
"image annotation",
"link image area",
"design collaboration",
"react"
]
}