-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1020 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
40
41
42
43
44
45
46
47
48
{
"name": "razor",
"title": "Razor.js",
"version": "0.1.2",
"description": "A templating engine that lets you use javascript directly in your templates with a single `@` character.",
"homepage": "https://github.com/davidmurdoch/RazorJs",
"keywords": ["razor", "template"],
"author": {
"name": "David Murdoch",
"web": "http://davidmurdoch.com"
},
"bugs": {
"url": "https://github.com/davidmurdoch/RazorJs/issues",
"email": "razor-bugs@davidmurdoch.com"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository":{
"type": "git",
"url": "git://github.com/davidmurdoch/RazorJs.git"
},
"engines": {
"node": ">= 0.6.3"
},
"dependencies": {
"nil": "0.0.7",
"node-proxy": "1.0.0",
"lodash": "0.10.x"
},
"devDependencies": {
"qunit": "*",
"walk": "*"
},
"scripts": {
"start": "node index.js",
"test": "node test.js"
},
"main": "index",
"directories": {
"test": "test",
"lib": "lib",
"bin": "bin"
}
}