-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 943 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 943 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
{
"name": "jadebars",
"version": "0.5.1",
"author": "Charles Moncrief <cmoncrief@gmail.com>",
"description": "Compile Jade to precompiled Handlebars templates",
"main": "lib/jadebars.js",
"bin": {
"jadebars": "./bin/jadebars"
},
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "cake build",
"test": "cake test"
},
"repository": {
"type": "git",
"url": "https://github.com/cmoncrief/jadebars.git"
},
"keywords": [
"jade",
"handlebars",
"precompile",
"templates",
"cli"
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"coffee-script": "~1.7.1",
"mocha": "~1.17.1"
},
"dependencies": {
"handlebars": "~1.3.0",
"commander": "~2.1.0",
"glob": "~3.2.9",
"mkdirp": "~0.3.5",
"xcolor": "~0.1.0",
"beholder": "~0.2.0",
"uglify-js": "~2.4.2",
"jade": "~1.3.0",
"mocha": "~1.17.1"
}
}