-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "wsquiz",
"version": "0.9.0",
"description": "Websocket quiz with statistics.",
"main": "server/app.js",
"scripts": {
"start": "node start.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "kkopec <kamil@ryuu.eu>",
"license": "MIT",
"devDependencies": {
"bower": "^1.8.12",
"grunt": "~1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-concat": "~2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-less": "~3.0.0",
"grunt-contrib-uglify": "~5.0.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-html2js": "^0.8.0",
"grunt-htmlhint": "^0.9.13",
"grunt-injector": "~1.1.0",
"grunt-jslint": "^1.1.14",
"grunt-lesslint": "~5.0.0",
"grunt-lintspaces": "~0.10.0",
"grunt-text-replace": "~0.4.0",
"grunt-zip": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/keeshii/wsquiz.git"
},
"keywords": [
"websocket",
"quiz"
],
"dependencies": {
"express": "^4.21.1",
"q": "^1.5.1",
"socket.io": "^4.8.0"
}
}