-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
31 lines (31 loc) · 891 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
{
"name": "liquid-node",
"author": "Marcel Jackwerth <marcel@northdocks.com>",
"contributors": [
{ "name": "Tony Heupel", "email": "tonyheupel@gmail.com" }
],
"description": "Node.js port of Tobias Lütke's Liquid template engine.",
"version": "0.0.2",
"homepage": "https://github.com/sirlantis/liquid-node",
"bugs": "https://github.com/sirlantis/liquid-node/issues",
"repository": {
"type": "git",
"url": "git://github.com/sirlantis/liquid-node.git"
},
"directories": { "src": "./src", "lib": "./lib", "test": "./test" },
"main": "./lib/index.js",
"engines": {
"node": "~0.6.5"
},
"dependencies": {
"coffee-script": "git://github.com/jashkenas/coffee-script.git",
"underscore": ">=1.2.3"
},
"devDependencies": {
"expresso": ">=0.9.0"
},
"scripts": {
"test": "expresso test/*.coffee",
"postinstall": "cake build"
}
}