-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "aa-chat-server",
"version": "0.0.1-alpha.v9",
"description": "Websocket chat server module, purposed to attach to another server",
"main": "app.js",
"engines": {
"node": ">=4.8.4"
},
"scripts": {
"start": "./node_modules/.bin/forever --minUptime 1000 --spinSleepTime 1000 bin/aa-chat-server",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"mocha": "./node_modules/.bin/mocha",
"beautify": "./node_modules/.bin/js-beautify",
"unstaged": "git status --porcelain",
"codeclimate": "./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"coveragereport": "open coverage/lcov-report/index.html",
"coveragefirefox": "firefox coverage/lcov-report/index.html",
"eslint": "./node_modules/.bin/eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fleischers/aa-chat-server.git"
},
"keywords": [
"chat",
"websockets"
],
"author": "Gorlif Sense <git@gorlifsense.com> (http://gorlifsense.com)",
"contributors": [
"Glib Ischenko <fcl@gorlifsense.com> (http://fleischer.gorlifsense.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Fleischers/aa-chat-server/issues"
},
"homepage": "https://github.com/Fleischers/aa-chat-server#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.3.1",
"eslint": "^2.11.1",
"istanbul": "^0.4.3",
"js-beautify": "^1.6.3",
"jsdoc": "^3.4.0",
"mocha": "^2.5.3",
"pre-commit": "^1.1.3",
"should": "^9.0.0",
"socket.io-client": "^1.4.6"
},
"dependencies": {
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"forever": "^0.15.2",
"lodash": "^4.13.1",
"shortid": "^2.2.6",
"socket.io": "^1.4.6",
"winston": "^2.2.0"
},
"pre-commit": [
"eslint",
"test",
"unstaged"
],
"tonicExampleFilename": "example/server.js"
}