forked from kesla/jade-to-handlebars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 994 Bytes
/
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
{
"name": "jade-to-handlebars",
"version": "2.3.0",
"description": "convert jade templates to handlebars templates",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/test.js && semistandard | snazzy"
},
"bin": {
"jade-to-handlebars": "./bin/jade-to-handlebars.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kesla/jade-to-handlebars.git"
},
"author": "David Björklund <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kesla/jade-to-handlebars/issues"
},
"homepage": "https://github.com/kesla/jade-to-handlebars#readme",
"dependencies": {
"commander": "2.9.0",
"jade-lexer": "0.0.8",
"jade-parser": "0.0.8",
"js-beautify": "^1.5.10",
"void-elements": "^2.0.1"
},
"devDependencies": {
"handlebars": "^3.0.3",
"jade": "^1.11.0",
"semistandard": "^7.0.5",
"snazzy": "^3.0.0",
"tape": "^4.0.0"
}
}