-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.01 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
{
"name": "wall",
"version": "0.1.1",
"description": "Express inspired event-driven architecture.",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/bredele/wall.git"
},
"keywords": [
"express",
"architecture",
"event",
"middlware",
"framework",
"pipe",
"client"
],
"author": "Olivier Wietrich <[email protected]> (http://github.com/bredele)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bredele/wall/issues"
},
"dependencies": {
"component-emitter": "~1.1.2",
"datastore": "^1.0.0",
"emitter-queue": "~0.1.2",
"looping": "^1.1.1"
},
"devDependencies": {
"mocha": "~1.18.2"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}