forked from prashnts/closure-compiler-brunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "closure-compiler-brunch",
"version": "0.2.0",
"description": "JavaScript optimizer with Closure Compiler in JS for Brunch files.",
"main": "./lib/index",
"scripts": {
"test": "npm run mocha && npm run cover",
"mocha": "mocha --require coffeescript/register test/**/*.coffee",
"cover": "istanbul report text-summary lcov",
"prepublishOnly": "coffee -o lib/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prashnts/closure-compiler-brunch.git"
},
"keywords": [
"brunchplugin",
"optimizer",
"closure",
"compiler"
],
"author": {
"name": "Prashant Sinha",
"email": "[email protected]",
"url": "https://noop.pw"
},
"contributors": [
"Aleksey Shvayka @shvaikalesh"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/prashnts/closure-compiler-brunch/issues"
},
"homepage": "https://github.com/prashnts/closure-compiler-brunch#readme",
"devDependencies": {
"chai": "^4.1.0",
"codeclimate-test-reporter": "^0.5.1",
"coffee-coverage": "^2.0.0",
"coffeescript": "^2.5.1",
"istanbul": "^0.4.5",
"mocha": "^8.3.2"
},
"dependencies": {
"google-closure-compiler": "^20210302.0.0"
},
"directories": {
"test": "test"
}
}