-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 KB
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": "blade",
"author": "Blake Miner <miner.blake@gmail.com> (http://www.blakeminer.com/)",
"description": "Blade - HTML Template Compiler, inspired by Jade/Pug & Haml",
"keywords": [
"html",
"compile",
"compiler",
"render",
"view",
"template",
"engine",
"jade",
"pug",
"haml",
"live binding"
],
"version": "3.3.1",
"homepage": "https://github.com/bminer/node-blade",
"repository": {
"type": "git",
"url": "https://github.com/bminer/node-blade.git"
},
"license": "MIT",
"main": "lib/blade.js",
"bin": { "blade": "./bin/blade" },
"dependencies": {
},
"devDependencies": {
"pegjs": "^0.7.0",
"uglify-js": ">=2.6 <3"
},
"optionalDependencies": {
"uglify-js": ">=2.6 <3",
"commander": ">=0.6"
},
"engines": {
"node": ">=0.6"
},
"scripts": {
"pretest": "./lib/parser/build.sh",
"test": "node ./test/test.js",
"prepublish": "./lib/parser/build.sh"
},
"contributors": [
"Michel Löhr (https://github.com/mlohr)",
"Richard Caseres <richardbmxfx@gmail.com>"
]
}