-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "Folio",
"version": "1.0.0",
"description": "Creates easy to use pagination for your websites.",
"keywords": [
"jquery-plugin",
"jquery",
"plugin",
"pagination",
"pages"
],
"repository": {
"type": "git",
"url": "https://github.com/divyamamgai/Folio.git"
},
"bugs": {
"url": "https://github.com/divyamamgai/Folio/issues"
},
"author": {
"name": "Divya Mamgai",
"email": "[email protected]",
"url": "https://github.com/divyamamgai"
},
"homepage": "http://divyamamgai.github.io/Folio",
"contributors": [{
"name": "Divya Mamgai",
"email": "[email protected]",
"url": "https://github.com/divyamamgai"
}],
"license": "MIT",
"dependencies": {
"jquery": ">=1.5.1"
},
"devDependencies": {
"bootstrap": "latest",
"stylus": "latest",
"nib": "latest",
"clean-css": "latest",
"clean-css-cli": "latest",
"jshint": "latest",
"jsdoc": "latest",
"uglify-js": "latest",
"rimraf": "latest"
},
"scripts": {
"prebuild:js": "jshint src/js",
"build:js": "cp src/js/Folio.js dist/js/Folio.js",
"postbuild:js": "uglifyjs src/js/Folio.js > dist/js/Folio.min.js -mc",
"build:css": "stylus -u nib src/styl/Folio.styl -o dist/css/Folio.css",
"postbuild:css": "cleancss dist/css/Folio.css > dist/css/Folio.min.css",
"build": "npm run build:css && npm run build:js",
"clean": "rimraf dist",
"doc": "jsdoc dist/js/Folio.js -d documentation"
}
}