forked from QuixoticScientist/whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 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
67
{
"name": "whiteboard",
"version": "1.0.0",
"description": "whiteboard",
"main": "server/server.js",
"jshintConfig": {
"bitwise": true,
"camelcase": true,
"curly": false,
"expr": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": "nofunct",
"newcap": true,
"undef": false,
"unused": false,
"strict": false,
"globalstrict": true,
"trailing": true,
"maxparams": 4,
"maxdepth": 2,
"maxcomplexity": 6,
"node": true,
"browser": true,
"jquery": true,
"globals": {
"moment": true,
"before": true,
"describe": true,
"expect": true,
"it": true
}
},
"dependencies": {
"body-parser": "^1.14.1",
"compression": "^1.6.0",
"express": "^4.13.3",
"kerberos": "0.0.17",
"redis": "^2.4.2",
"socket.io": "^1.3.7",
"underscore": "^1.8.3"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "",
"grunt-contrib-watch": "",
"matchdep": ""
},
"scripts": {
"start": "node server/server.js",
"server": "node-inspector & nodemon --debug ./server/server.js",
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nahash411/whiteboard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nahash411/whiteboard/issues"
},
"homepage": "https://github.com/nahash411/whiteboard#readme"
}