-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
38 lines (38 loc) · 891 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
{
"name": "yuglify",
"description": "cli wrapper for uglify and cssmin used by YUI",
"version": "2.0.0",
"dependencies": {
"nopt": "~2.1.1",
"uglify-js": "^3.1.4",
"ycssmin": "~1.0.1"
},
"devDependencies": {
"jshint": "^2.9.5",
"mocha": "^3.4.2",
"vows": "*",
"yui-lint": "^0.2.0"
},
"main": "./lib/index.js",
"bin": {
"yuglify": "./bin/yuglify"
},
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/*.js ./bin/yuglify",
"test": "vows --spec ./tests/*.js && mocha mocha-tests --recursive"
},
"preferGlobal": "true",
"bugs": {
"url": "http://github.com/yui/yuglify/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yui/yuglify/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/yui/yuglify.git"
}
}