-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "animated_gif",
"version": "1.0.2",
"description": "Javascript library for creating animated GIFs",
"main": "src/Animated_GIF.js",
"scripts": {
"prebuild": "mkdirp dist/",
"build": "browserify src/Animated_GIF.js -s Animated_GIF -o dist/Animated_GIF.js",
"watch": "watchify src/Animated_GIF.js -s Animated_GIF -o dist/Animated_GIF.js",
"minify": "browserify src/Animated_GIF.js -s Animated_GIF -o dist/Animated_GIF.min.js -g uglifyify -t uglifyify",
"prepublish": "npm run build && npm run minify"
},
"repository": {
"type": "git",
"url": "https://github.com/sole/Animated_GIF"
},
"keywords": [
"animated",
"gif"
],
"bugs": {
"url": "https://github.com/sole/Animated_GIF/issues"
},
"homepage": "https://github.com/sole/Animated_GIF",
"devDependencies": {
"browserify": "^13.1.0",
"mkdirp": "^0.5.1",
"uglifyify": "^3.0.3",
"watchify": "^3.7.0",
"workerify": "^0.3.0"
},
"dependencies": {
"node-dithering": "0.0.1",
"omggif": "^1.0.8"
},
"browserify": {
"transform": [
"workerify"
]
}
}