forked from dcodeIO/ClosureCompiler.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (39 loc) · 1.25 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
{
"name": "closurecompiler",
"version": "1.6.1",
"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": "~2.2.1",
"closurecompiler-externs": "*",
"bl": "~0.9.3"
},
"license": "Apache-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",
"compile": "node bin/ccjs ClosureCompiler.js --externs=node --compilation_level=SIMPLE_OPTIMIZATIONS > ClosureCompiler.min.js"
},
"preferGlobal": true
}