forked from google/closure-compiler-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.16 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
43
44
45
{
"name": "closure-compiler-npm",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/google-closure-compiler-java",
"packages/google-closure-compiler-linux",
"packages/google-closure-compiler-osx",
"packages/google-closure-compiler-windows",
"packages/google-closure-compiler"
],
"nohoist": ["**/mocha"]
},
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
"repository": {
"type": "git",
"url": "https://github.com/google/closure-compiler-npm.git"
},
"contributors": [
{
"name": "Chad Killingsworth",
"email": "chadkillingsworth@gmail.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/closure-compiler/issues"
},
"homepage": "https://developers.google.com/closure/compiler/",
"dependencies": {},
"devDependencies": {
"glob": "7.x",
"lerna": "^3.4.1",
"mocha": "6.x",
"ncp": "2.x",
"semver": "5.x",
"should": "13.x"
},
"scripts": {
"build": "./build-scripts/build.sh",
"test": "./build-scripts/test.sh",
"clean": "./build-scripts/clean.sh"
}
}