-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
57 lines (57 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "closure-compiler-npm",
"version": "20240317.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": "[email protected]"
}
],
"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",
"graphlib": "2.x",
"mocha": "10.x",
"ncp": "2.x",
"semver": "5.x",
"should": "13.x"
},
"resolutions": {
"**/glob-stream/**/glob-parent": "^5.1.2",
"**/glob-watcher": "^6.0.0",
"**/gulp-cli/**/debug": "^3.0.0",
"**/gulp-cli/**/yargs-parser": "^13.1.2",
"**/gulp-mocha/**/mocha": "^10.0.0",
"**/union-value/**/set-value": "^2.0.1"
},
"scripts": {
"build": "./build-scripts/build.sh",
"test": "./build-scripts/test.sh",
"clean": "./build-scripts/clean.sh",
"version": "./build-scripts/version-packages.js",
"publish-packages": "./build-scripts/publish.js"
}
}