forked from cmoncrief/coffeebar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 979 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 979 Bytes
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": "coffeebar",
"version": "0.5.0",
"author": "Charles Moncrief",
"description": "Simplified CoffeeScript build tool.",
"main": "lib/coffeebar.js",
"bin": {
"coffeebar": "./bin/coffeebar"
},
"scripts": {
"prepublish": "cake build",
"test": "cake test"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/cmoncrief/coffeebar.git"
},
"keywords": [
"coffee",
"coffeescript",
"build",
"compile",
"minify",
"literate",
"sourcemap",
"source",
"map"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"commander": "~2.8.0",
"beholder": "0.2.0",
"xcolor": "~0.1.0",
"coffee-script": "1.10.0",
"uglify-js": "~2.4.20",
"mkdirp": "~0.5.0",
"glob": "~5.0.5",
"source-map": "~0.4.2"
},
"devDependencies": {
"mocha": "~2.2.4",
"coffee-script": "1.10.0",
"rimraf": "~2.3.2"
}
}