-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "easy-countdown",
"version": "2.2.0",
"description": "Simple, lightweight and easy to use countdown plugin",
"main": "src/countdown.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run build-vanilla && npm run minify-vanilla && npm run build-jquery && npm run minify-jquery",
"build-vanilla": "browserify -s Countdown -e src/countdown.js -o dest/countdown.js",
"build-jquery": "browserify -s Countdown -e src/jquery-wrapper.js -o dest/jquery.countdown.js",
"minify-vanilla": "uglifyjs dest/countdown.js > dest/countdown.min.js",
"minify-jquery": "uglifyjs dest/jquery.countdown.js > dest/jquery.countdown.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rendro/countdown.git"
},
"keywords": [
"countdown",
"timer",
"jQuery",
"plugin"
],
"author": "Robert Fleischmann <me@robert-fleischmann.de>",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.opensource.org/licenses/gpl-license.php"
}
],
"bugs": {
"url": "https://github.com/rendro/countdown/issues"
},
"homepage": "https://github.com/rendro/countdown",
"devDependencies": {
"bower": "1.3.12",
"browserify": "6.0.3",
"uglify-js": "2.4.15"
}
}