-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.6 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
64
65
66
{
"name": "olives",
"description": "A JS Framework for creating realtime and scalable web applications. Based on Emily.js and socket.io",
"version": "3.0.8",
"homepage": "http://flams.github.com/olives/",
"license": "MIT",
"files": [
"LICENSE",
"src"
],
"author": "Olivier Scherrer <[email protected]>",
"contributors": [
"Olivier Scherrer <[email protected]>",
"Olivier Wietrich <[email protected]"
],
"dependencies": {
"emily": "3.0.7",
"socketio-transport": "0.0.4",
"dom-stack": "0.0.1",
"event-plugin": "0.0.3",
"place-plugin": "0.0.1",
"seam": "0.0.3",
"seam-view": "0.0.1",
"url-highway": "0.0.3",
"data-binding-plugin": "0.0.6",
"local-observable-store": "0.0.3"
},
"keywords": [
"framework",
"web",
"realtime",
"UI",
"MVC",
"scalable",
"data-binding",
"Router",
"node.js",
"socket.io",
"all the buzz words"
],
"repository": {
"type": "git",
"url": "[email protected]:flams/olives.git"
},
"bugs": {
"url": "https://github.com/flams/olives/issues"
},
"main": "src/olives.js",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"karma-script-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.2",
"karma-firefox-launcher": "~0.1.3",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "~0.1.5",
"requirejs": "~2.1.9",
"karma-phantomjs-launcher": "~0.1.1",
"karma": "~0.10.9",
"karma-browserify": "0.0.6"
},
"scripts": {
"test": "watchify -r ./specs/*.js -i olives -o tests.js; karma start karma.config.js"
}
}