-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 993 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
36
37
38
39
40
41
42
43
{
"name": "slacknc",
"version": "0.0.1",
"description": "A powerful, user-friendly command-line client for Slack",
"homepage": "https://section214.com/product/slacknc",
"bugs": "https://github.com/Section214/SlackNC/issues",
"license": "GPL-2.0",
"main": "src/slacknc.js",
"repository": "Section214/SlackNC",
"keywords": [
"slack",
"node",
"nodejs"
],
"author": {
"name": "Daniel J Griffiths",
"email": "[email protected]",
"url": "https://section214.com"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"dependencies": {
"@slack/client": "^3.6.0",
"semver": "^5.1.0",
"nconf": "^0.8.4",
"winston": "^2.1.1",
"string": "^3.3.1",
"moment": "^2.11.2",
"chalk": "^1.1.1",
"blessed": "^0.1.81"
},
"devDependencies": {
"nodemon": "^1.9.0",
"jshint": "^2.9.1"
},
"scripts": {
"dev": "nodemon ./src/slacknc.js",
"lint": "npm run lint-js",
"lint-js": "jshint ./src"
}
}