-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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": "Mod Optimizer",
"description": "Optimizes Mod applications for production by minifying, to reduce file size, and creating bundles, to reduce the number of requests.",
"keywords": [
"mod",
"optimization",
"production"
],
"repository": {
"type": "git",
"url": "https://github.com/PhrontHQ/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": ">=20.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"bluebird": "~3.5.5",
"csso": "~4.2.0",
"css-tree": "~3.1.0",
"html-minifier": "^4.0.0",
"jshint": "^2.10.2",
"minidom": "~1.0.0",
"mod": "github:PhrontHQ/mod#main",
"object-foreach": "^0.1.2",
"object-keys": "^1.0.12",
"object.values": "^1.0.4",
"optimist": "~0.6.1",
"q-io": "marchant/q-io#bluebird-q-io",
"semver": "~6.3.0",
"terser": "^5.44.1",
"url2": "~1.0.4"
},
"devDependencies": {
"istanbul": "~0.4",
"jasmine-node": "~1.14",
"prettier": "3.6.2",
"sandboxed-module": "~2.0"
},
"exclude": [
"builds"
],
"preferGlobal": true
}