-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
33 lines (33 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
{
"name": "piklor.js",
"version": "1.2.0",
"description": "A tiny JavaScript color picker library.",
"main": "src/piklor.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"min": "uglifyjs src/piklor.js -c -m > src/piklor.min.js",
"update-min": "cp src/piklor.min.js example/js/piklor.js && git add example && git commit -m 'Updated piklor.js in the example dir' .",
"deploy": "cp -r example ../_tmp && git checkout gh-pages && cp -r ../_tmp/* . && git add . -A && git commit -m 'Rebuild.' && rm -rf ../_tmp ../_tmp.js"
},
"contributors": [
"Ionică Bizău <[email protected]> (http://ionicabizau.net)",
"Kosta Korenkov <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:jillix/piklor.js.git"
},
"keywords": [
"color",
"picker"
],
"author": "jillix <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jillix/piklor.js/issues"
},
"homepage": "https://github.com/jillix/piklor.js",
"devDependencies": {
"uglifyjs": "^2.4.10"
}
}