forked from montagejs/mop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
42
43
44
{
"name": "mop",
"version": "0.14.0",
"title": "Montage Optimizer",
"description": "Optimizes Montage applications for production by minifying, to reduce file size, and creating bundles, to reduce the number of requests.",
"keywords": [
"montage",
"optimization",
"production"
],
"main": "optimize.js",
"scripts": {
"test": "istanbul test jasmine-node -- spec && jshint optimize.js lib/",
"integration": "mop-integration"
},
"dependencies": {
"montage": "~0.14.0",
"mr": "~0.15.0 || ~0.14.2 || ~0.13.0 || 0.12.14",
"collections": "~0.1.0",
"q": "0.9.6",
"q-io": "~1.6.6",
"url2": "~0.0.0",
"semver": "~1.1.4",
"uglify-js": "~2.2.5",
"optimist": "~0.5.0",
"jsdom": "~0.6.5",
"csso": "~1.3.7",
"html-minifier": "~0.5.2"
},
"devDependencies": {
"jasmine-node": "~1.5.0",
"sandboxed-module": "~0.1.4",
"istanbul": "~0.1.34",
"jshint": "~2.1.4",
"mop-integration": "git://github.com/montagejs/mop-integration.git#master"
},
"exclude": [
"builds"
],
"bin": {
"mop": "optimize.js"
},
"preferGlobal": true
}