-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
45
46
47
48
49
50
51
52
53
{
"name": "mop",
"version": "18.0.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"
],
"repository": {
"type": "git",
"url": "https://github.com/montagejs/mop.git"
},
"license": "BSD-3-Clause",
"main": "optimize.js",
"bin": "optimize.js",
"scripts": {
"test": "istanbul test jasmine-node -- spec && jshint optimize.js lib/",
"integration": "MOP_VERSION=. mop-integration"
},
"engines": {
"node": ">=8.2.1",
"npm": ">=6.7.0"
},
"dependencies": {
"bluebird": "~3.5.5",
"csso": "~1.3",
"html-minifier": "^3.4.3",
"jshint": "^2.9.4",
"minidom": "~1.0.0",
"montage": "montagejs/montage#master",
"mr": "montagejs/mr#master",
"object-foreach": "^0.1.2",
"object-keys": "^1.0.12",
"object.values": "^1.0.4",
"optimist": "~0.6.1",
"q-io": "^1.13.6",
"semver": "~5.1",
"uglify-js": "~2.6",
"url2": "~1.0.1"
},
"devDependencies": {
"jasmine-node": "~1.14",
"sandboxed-module": "~2.0",
"istanbul": "~0.4",
"mop-integration": "git://github.com/montagejs/mop-integration.git#master"
},
"exclude": [
"builds"
],
"preferGlobal": true
}