forked from derbyjs/derby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "derby",
"description": "MVC framework making it easy to write realtime, collaborative applications that run in both Node.js and browsers.",
"version": "0.6.0-alpha45",
"homepage": "http://derbyjs.com/",
"repository": {
"type": "git",
"url": "git://github.com/codeparty/derby.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/all/*.mocha.js; ./node_modules/.bin/jshint lib/*.js test/*.js"
},
"dependencies": {
"derby-parsing": "^0.3.2",
"derby-templates": "^0.2.3",
"html-util": "~0.2.1",
"tracks": "^0.5.0",
"racer": "0.6.0-alpha32",
"chokidar": "^0.12.6",
"through": "~2.3.4",
"resolve": "^0.6.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"express": "^4.10.2",
"jshint": "^2.5.10",
"mocha": "^2.0.1",
"browserify": "^6.3.2"
},
"optionalDependencies": {},
"engines": {},
"testling": {
"harness": "mocha-bdd",
"files": "test/*/*.mocha.js",
"browsers": [
"ie/9..latest",
"chrome/latest",
"firefox/latest",
"opera/latest",
"safari/latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
}
}