forked from themadcreator/gifler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.6 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
{
"name" : "thin-gifler",
"version" : "0.1.0",
"description" : "Render GIF frames to <canvas>",
"author" : "themadcreator@github",
"license" : "Apache-2.0",
"main" : "gifler.bare.js",
"scripts" : {
"compile" : "./node_modules/.bin/coffee --compile --bare --print src/gifler.coffee > gifler.bare.js",
"postcompile" : "./node_modules/.bin/browserify gifler.bare.js > gifler.bundle.js",
"build" : "npm run compile && ./node_modules/.bin/uglifyjs --compress --mangle --screw-ie8 --preamble '/** gifler.js | github.com/themadcreator/gifler | @license: Apache-2.0 */' -- gifler.bundle.js > gifler.min.js",
"postbuild" : "cp gifler.min.js site/assets/gifler.js",
"site-prep" : "npm run build && rm -rf gh-pages",
"site" : "npm run site-prep && ./node_modules/.bin/metalsmith",
"site-deploy" : "git subtree push --prefix gh-pages origin gh-pages",
"deploy" : "npm version minor -m \"Update version to %s\" ",
"postdeploy" : "git push && git push --tags"
},
"dependencies" : {
"omggif" : "^1.0.10"
},
"devDependencies": {
"browserify" : "11.x.x",
"coffee-script" : "1.10.0",
"uglify-js" : "2.x.x",
"metalsmith" : "2.1.0",
"metalsmith-assets" : "0.1.0",
"metalsmith-comment-yaml" : "0.1.0",
"metalsmith-ignore" : "0.1.2",
"metalsmith-jade" : "2.0.2",
"metalsmith-less" : "2.0.0",
"metalsmith-raw" : "0.2.0",
"metalsmith-serve" : "0.0.4",
"metalsmith-watch" : "1.0.1"
}
}