-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 946 Bytes
/
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
{
"name": "eqheights",
"version": "1.2.0",
"description": "Give all elements in a group of elements at least the height of the tallest element within that group",
"main": "dist/eqheights.js",
"scripts": {
"transpile": "babel eqheights.js --modules umd --out-dir dist",
"minify": "uglifyjs dist/eqheights.js --compress --screw-ie8 --mangle --output dist/eqheights.min.js",
"build": "npm run transpile && npm run minify"
},
"repository": {
"type": "git",
"url": "https://github.com/Maximilianos/eqheights.git"
},
"keywords": [
"element",
"elements",
"equal",
"equalize",
"heights",
"height"
],
"author": "Max GJ Panas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maximilianos/eqheights/issues"
},
"homepage": "https://github.com/Maximilianos/eqheights#readme",
"devDependencies": {
"babel": "^5.8.23",
"uglify-js": "^2.4.24"
}
}