-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1017 Bytes
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": "quizjs",
"version": "0.1.0",
"description": "A web-based platform for live quiz shows",
"author": {
"name": "Alberto Congiu",
"email": "4lbertoc@gmail.com",
"url": "http://albertocongiu.com"
},
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"quiz",
"quizjs"
],
"repository": {
"type": "git",
"url": "https://github.com/4lbertoC/quizjs.git"
},
"dependencies": {
"express": "^4.11.2",
"socket.io": "^1.3.4",
"socket.io-client": "^1.3.4"
},
"devDependencies": {
"grunt-browserify": "^3.4.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.11.0",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.0.0"
},
"scripts": {
"build": "npm install && grunt",
"test": "grunt"
}
}