-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.58 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": "buzzer.click",
"version": "0.0.1",
"description": "Online realtime electronic buzzer for games",
"main": "app.js",
"engines": {
"node": "6.5.0"
},
"scripts": {
"tests-bdd": "mocha tests/BDD/**/*.js --reporter mochawesome --reporter-options reportDir=Docs/Test-BDD",
"tests-functional": "mocha tests/Functional/**/*.js --reporter mochawesome --reporter-options reportDir=Docs/Test-Functional",
"build": "browserify browser.js --standalone buzzapi -o www/js/bundle.js",
"watch": "watchify browser.js --standalone buzzapi -o www/js/bundle.js -verbose",
"beautify-solution": "node beautify-solution.js",
"document": "jsdoc lib/* -r -d ./Docs/Html && jsdoc2md lib/* > ./Docs/Docs.md"
},
"author": "Damien Clark, Nick Andjelkovic, Wade Baglin",
"license": "GPL-3.0",
"private": true,
"dependencies": {
"arr-union": "^3.1.0",
"array-unique": "^0.3.2",
"bad-words": "^1.4.2",
"chance": "^0.7.*",
"compression": "^1.4.*",
"express": "4.13.*",
"handlebars": "^3.0.*",
"javascript-state-machine": "^2.3.5",
"js.cookie": "0.0.4",
"jsonschema": "^1.0.2",
"node-uuid": "^1.4.7",
"random-js": "^1.0.8",
"semver": "^5.0.1",
"socket.io": "1.3.*",
"socket.io-client": "^1.3.6",
"socketio-wildcard": "^0.3.0"
},
"devDependencies": {
"browserify": "^11.0.0",
"eslint": "^3.1.1",
"jsdoc": "3.4.0",
"jsdoc-to-markdown": "^1.3.7",
"jshint": "2.9.*",
"mocha": "^3.0.0",
"mochawesome": "^1.5.2",
"require-globify": "^1.2.1",
"should": "^10.0.0",
"watchify": "^3.3.0"
}
}