-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "image-map",
"version": "2.0.1",
"description": "Response, dynamic image maps",
"main": "dist/image-map.js",
"module": "dist/image-map.es.js",
"directories": {
"example": "example"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "yarn build:dist",
"build:dist": "shx rm -rf ./dist/* ; yarn bundle:dist ; yarn bundle:jq ; yarn bundle:es ; yarn stats:dist",
"stats:dist": "node ./resources/dist-stats.js",
"bundle:dist": "rollup -c ./resources/rollup-config.js",
"bundle:jq": "rollup -c ./resources/rollup-config-jq.js",
"bundle:es": "rollup -c ./resources/rollup-config-es.js",
"prettier": "prettier --write './src/*.{js,css,md}'",
"prep": "yarn prettier && yarn build && yarn test",
"test": "exit 0",
"prepublishOnly": "yarn prep && bash ./resources/publish.sh"
},
"author": {
"name": "Travis Clarke",
"email": "travis.m.clarke@gmail.com",
"url": "https://www.travismclarke.com/"
},
"keywords": [
"image",
"map",
"image map",
"image-map",
"responsive",
"responsive image map",
"responsive image-map",
"jquery-plugin",
"ecosystem:jquery"
],
"repository": {
"type": "git",
"url": "https://github.com/clarketm/image-map"
},
"bugs": {
"url": "https://github.com/clarketm/image-map/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/clarketm/image-map#readme",
"ignore": [
"**/.*",
"node_modules",
"test",
"tests"
],
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.2",
"@types/node": "^12.7.8",
"colors": "^1.3.2",
"prettier": "^1.14.3",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-strip-banner": "^2.0.0",
"shx": "^0.3.2",
"uglify-js": "2.8.11",
"uglify-save-license": "^0.4.1"
}
}