-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "fire",
"description": "An experimental Framework that uses JSON structures to simplify the definition of complex behaviors from asynchronous sources in Node.js",
"version": "0.1.1",
"homepage": "http://firejs.firebase.co",
"author": "Firebase.co <[email protected]> (http://www.firebase.co)",
"main": "./index.js",
"preferGlobal" : true,
"bin": {
"firejs": "./bin/firejs"
},
"repository":
{
"type": "git",
"url": "https://github.com/firejs/fire"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/firejs/fire/issues"
},
"keywords": ["JSON", "framework", "runtime"],
"contributors" : [{ "name": "Johan Hernandez", "email": "[email protected]" }],
"dependencies": {
"nopt": ">= 1.0.10"
},
"devDependencies": {
"vows": ">= 0.5.11"
},
"engines": {
"node": ">= 0.4.5"
},
"scripts": {
"test": "make"
},
"licenses" : [
{
"type" : "MIT",
"url" : "https://github.com/firejs/fire/blob/master/LICENSE"
}
]
}