-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 966 Bytes
/
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
{
"name": "easypack",
"version": "1.0.0",
"description": "This is a very, very simple build tool to packege the js and css includes in a html file into one combined js and css (optionally minified) files",
"main": "./lib/easypack",
"bin": {
"easypack": "./bin/easypack.js"
},
"repository": {
"type": "git",
"url": "git://github.com/shaunakv1/easypack.git"
},
"bugs": {
"url": "https://github.com/shaunakv1/easypack/issues"
},
"directories": {
"test": "test"
},
"dependencies": {
"cheerio": "~0.12.1",
"validator": "~1.4.0",
"htmltidy": "~0.0.6",
"uglify-js": "~2.3.6",
"wrench": "~1.5.1",
"uglifycss": "0.0.5",
"styletto": "~0.4.5"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"minify",
"build",
"html",
"js",
"css",
"compressor"
],
"author": "Shaunak Vairagare",
"license": "MIT"
}