forked from dcodeIO/ClosureCompiler.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1.39 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
{
"name": "closurecompiler",
"version": "1.5.1",
"description": "ClosureCompiler.js: Closure Compiler for node.js. The all-round carefree package.",
"author": "Daniel Wirtz <[email protected]>",
"contributors": [
"Feross Aboukhadijeh <[email protected]>"
],
"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": "0.1.20",
"closurecompiler-externs": "*",
"bl": "~0.9.3",
"jsdoc": "~3.3.0-alpha10"
},
"license": "Apache License, Version 2.0",
"engines": {
"node": ">=0.8"
},
"scripts": {
"install": "npm run-script configure",
"update": "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": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
},
"preferGlobal": true
}