-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "jquery-unorphanize",
"title": "jQuery Unorphanize",
"description": "A jQuery helper for preventing orphans",
"version": "1.1.1",
"main": "unorphanize.jquery.js",
"files": [
"unorphanize.jquery.js",
"unorphanize.jquery.min.js"
],
"homepage": "https://github.com/tedw/jquery-unorphanize",
"author": "Ted Whitehead <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tedw/jquery-unorphanize.git"
},
"keywords": [
"jquery",
"orphan",
"typography",
"unorphan",
"widow"
],
"bugs": {
"url": "https://github.com/tedw/jquery-unorphanize/issues"
},
"license": "Unlicense",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"dependencies": {},
"devDependencies": {
"jshint": "^2.9.3",
"uglify-js": "^2.7.3"
},
"scripts": {
"lint": "jshint unorphanize.jquery.js",
"minify": "uglifyjs unorphanize.jquery.js --output unorphanize.jquery.min.js --compress conditionals=true --mangle toplevel -r '$'",
"prepublish": "npm run lint && npm run minify"
}
}