This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.46 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "rel",
"version": "0.1.0",
"description": "Rel is a SQL AST manager for Node JS",
"homepage": "http://yang.github.com/rel/",
"keywords": [],
"author": {
"name": "Carl Woodward",
"email": "[email protected]",
"web": "http://carlwoodward.com"
},
"maintainers": [
{
"name": "Carl Woodward",
"email": "[email protected]",
"web": "http://carlwoodward.com"
},
{
"name": "Yang Zhang",
"web": "http://yz.mit.edu"
}
],
"contributors": [
{
"name": "Carl Woodward",
"email": "[email protected]",
"web": "http://carlwoodward.com"
},
{
"name": "Zachery Hostens",
"email": "[email protected]",
"web": "http://zacheryph.github.com"
},
{
"name": "Yang Zhang",
"web": "http://yz.mit.edu"
}
],
"bugs": {
"web": "https://github.com/cjwoodward/rel/issues"
},
"licenses": [],
"repository": "https://github.com/cjwoodward/rel",
"dependencies": {
"coffee-script": "^1.7.1",
"date-utils": "0.1.8",
"underscore": "1.1.6"
},
"engines": {
"node": ">=0.4.5"
},
"main": "rel",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "find rel.coffee lib/ -name '*.coffee' | xargs ./node_modules/.bin/coffee --map --compile",
"test": "node_modules/.bin/vows vows/*"
},
"devDependencies": {
"vows": "git+https://github.com/snoble/vows.git#1e8fa11fdb2f67eac285cbcbcf6485eec131fa02"
}
}