-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1.19 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
{
"name": "jquery-repeater-form",
"version": "1.0.2",
"description": "Jquery Form Repeater",
"main": "jquery.repeater.js",
"bugs": {
"url": "https://github.com/blpraveen/jquery.repeater/issues"
},
"scripts": {
"minifyJS": "uglifyjs jquery.repeater.js --compress --mangle --warn --output jquery.repeater.min.js",
"production": "npm run version:bump --silent && rm -f jquery.repeater.min.js && npm run minifyJS --silent && npm run version:add --silent",
"version:add": "echo \"/*! Jquery Repeater!!!!1!11! v - $(npm run version:extract --silent)n * © Someone probably n * Build time: $(date '+%m-%d-%Y %H:%M:%S')n */n$(cat jquery.repeater.min.js)\" > jquery.repeater.min.js",
"version:bump": "npm version patch --no-git-tag-version --silent",
"version:extract": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'"
},
"repository": {
"type": "git",
"url": "https://github.com/blpraveen/jquery.repeater"
},
"keywords": [
"npm",
"jquery-plugin",
"jquery",
"repeater"
],
"author": "B L Praveen",
"license": "ISC",
"devDependencies": {},
"dependencies": {
"uglify-js": "^3.13.10"
}
}