-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "@romellem/hover-image",
"version": "0.4.0",
"description": "A generic library to swap out an image on hover.",
"main": "./lib/umd/hover-image.js",
"module": "./lib/esm/hover-image.esm.js",
"files": [
"lib/umd/",
"lib/esm/"
],
"scripts": {
"clean": "rimraf lib",
"build": "rollup -c",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romellem/hover-image.git"
},
"keywords": [
"hover",
"image",
"swap",
"vanillajs"
],
"author": {
"name": "Matt Wade",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/romellem/hover-image/issues"
},
"homepage": "https://github.com/romellem/hover-image#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-terser": "^7.0.0"
},
"dependencies": {
"delegate": "^3.2.0"
}
}