forked from google/closure-compiler-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 962 Bytes
/
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": "google-closure-compiler-js",
"version": "20180610.0.1",
"description": "Check, compile, transpile, optimize and compress JavaScript with Closure Compiler in JS",
"main": "index.js",
"bin": {
"google-closure-compiler-js": "cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/closure-compiler-js.git"
},
"keywords": [
"javascript",
"compiler",
"optimizer",
"minifier",
"closure"
],
"author": "The Closure Compiler Authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/closure-compiler/issues"
},
"homepage": "https://developers.google.com/closure/compiler/",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^3.5.3",
"ncp": "^2.0.0"
},
"dependencies": {
"minimist": "^1.2.0",
"vinyl": "^2.0.1",
"webpack-core": "^0.6.8"
},
"scripts": {
"test": "mocha",
"pretest": "./build_compiler.js"
}
}