forked from google/closure-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.21 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
{
"name": "closure-compiler",
"config": {
"runtime_tests_dir": "./test/com/google/javascript/jscomp/runtime_tests"
},
"version": "1.0.0",
"repository": "git@github.com:google/closure-compiler.git",
"license": "Apache-2",
"private": true,
"devDependencies": {
"closure-compiler-npm": "google/closure-compiler-npm"
},
"dependencies": {
"chalk": "^4.1.0",
"future-event": "^1.5.0",
"glob": "^7.1.6",
"google-closure-library": "^20200719.0.0",
"jest": "^26.1.0",
"jsdom": "^16.3.0"
},
"scripts": {
"build": "clean && mvn -DskipTests",
"build:fast": "mvn -DskipTests -pl externs/pom.xml,pom-main.xml,pom-main-shaded.xml",
"clean": "yarn runtime_tests:clean && mvn clean",
"compile": "java -jar bazel-bin/compiler_unshaded_deploy.jar",
"runtime_tests:build": "$npm_package_config_runtime_tests_dir/utils/build.sh",
"runtime_tests:clean": "rm -rf $npm_package_config_runtime_tests_dir/**/build/*",
"runtime_tests:run": "jest --testRegex $npm_package_config_runtime_tests_dir/utils/test/* --verbose=true",
"runtime_tests": "yarn runtime_tests:clean && yarn run --silent runtime_tests:build && yarn run --silent runtime_tests:run",
"test": "mvn test"
}
}