-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "node-relaychat",
"version": "1.0.0-SNAPSHOT",
"description": "A relay-based chat using node.js socket.io transport protocol",
"main": "src/index.js",
"scripts": {
"test": "standard --fix test/index.js && node test/index.js",
"lint:gulp": "gulp lint",
"lint": "npm run lint:gulp -s",
"docs:gulp": "gulp docs",
"docs": "npm run docs:gulp -s",
"styles": "standard --fix",
"git:precommit": "npm run docs && git add . && git commit -am \"Precommit made from NPM\" && git push",
"start": "npm run lint -s && node src/index.js",
"host": "npm run lint -s && node src/server.js"
},
"keywords": [
"Relay",
"Chat",
"Relaychat",
"Nodejs",
"Javascript",
"JS",
"Loli",
"Cute",
"Kawaii",
"Riichi",
"Relay-chat",
"Console"
],
"author": "Riichi_Rusdiana#6815",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"del": "^4.0.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"jsdoc-to-markdown": "^4.0.1",
"standard": "^12.0.1"
},
"dependencies": {
"chalk": "^2.4.2",
"express": "^4.16.4",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}