-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 792 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
{
"name": "socket-chat",
"description": "plugin-centric chat server",
"license": "MIT",
"version": "0.0.11",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/socket-chat/core.git"
},
"scripts": {
"build": "./node_modules/.bin/babel src -d lib",
"lint": "./node_modules/.bin/eslint ./src",
"prepublish": "npm run build",
"start": "./node_modules/.bin/babel-node src/index.js"
},
"dependencies": {
"debug": "^2.2.0",
"immutable": "^3.7.6",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.4.0",
"socket.io": "^1.4.5"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^2.1.0"
}
}