forked from varvet/serenade.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (50 loc) · 1.19 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
{
"name": "serenade",
"main": "src/build",
"version": "0.4.1",
"description": "JavaScript client side MVC framework",
"keywords": [ "MVC", "data bingings", "client-side" ],
"maintainers": [
{
"name": "Jonas Nicklas",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Jonas Nicklas",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/elabs/serenade.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/elabs/serenade.js/blob/master/LICENSE"
}
],
"repositories": [
{
"type": "git",
"url": "[email protected]:elabs/serenade.js.git"
}
],
"dependencies": {
"mocha": "1.x.x",
"chai": "0.5.x",
"jsdom": ">= 0.2",
"jison": "0.3.10",
"coffee-script": "1.x.x",
"sinon": "1.x.x",
"uglify-js": "1.x.x",
"express": "2.x.x",
"gzip": ">= 0.1"
},
"scripts": {
"build": "cake build",
"test": "mocha test/*.spec.coffee test/**/*.spec.coffee",
"examples": "coffee web.coffee"
}
}