-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 944 Bytes
/
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
{
"name": "slackadaisical",
"version": "0.1.4",
"description": "A command-line Slack chat client.",
"main": "dist/index.js",
"repository": "https://github.com/bkanber/Slackadaisical.git",
"author": "Burak Kanber <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"nodemon": "^1.12.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2"
},
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist --presets es2015,stage-2",
"serve": "node dist/index.js"
},
"bin": {
"slackadaisical": "dist/index.js"
},
"dependencies": {
"blessed": "^0.1.81",
"moment": "^2.19.1",
"node-fetch": "^1.7.3",
"object.values": "^1.0.4",
"request": "^2.83.0",
"websocket": "^1.0.24",
"word-wrap": "^1.2.3"
}
}