This repository was archived by the owner on Jan 27, 2018. It is now read-only.
forked from dcodeIO/ClosureCompiler.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (40 loc) · 1.33 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
{
"name": "closurecompiler",
"version": "1.1.2",
"description": "ClosureCompiler.js: Closure Compiler for node.js. The all-round carefree package.",
"author": "Daniel Wirtz <dcode@dcode.io>",
"contributors": [
"Feross Aboukhadijeh <feross@feross.org>"
],
"main": "ClosureCompiler.js",
"bin": {
"ccjs": "./bin/ccjs"
},
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/ClosureCompiler.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/ClosureCompiler.js/issues"
},
"keywords": ["closure compiler", "closure", "compiler", "util", "utility"],
"dependencies": {
"tar": "*",
"sleep": "*",
"closurecompiler-externs": "*"
},
"license": "Apache License, Version 2.0",
"engines": {
"node": ">=0.8"
},
"preferGlobal": true,
"scripts": {
"postinstall": "npm run-script configure",
"postupdate": "npm run-script configure",
"test": "node tests/test.js",
"configure": "node scripts/configure.js",
"make": "npm run-script compile && npm test && npm run-script jsdoc",
"compile": "node bin/ccjs ClosureCompiler.js --externs=node --compilation_level=ADVANCED_OPTIMIZATIONS > ClosureCompiler.min.js",
"jsdoc": "jsdoc -c jsdoc.json"
}
}