forked from slackapi/node-slack-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "slack-talkus",
"version": "3.14.1-r2",
"description": "(fork) A library for creating a Slack client",
"main": "./index",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"mocha": "mocha --recursive --reporter spec test",
"test": "npm run mocha && npm run lint",
"cover": "istanbul cover -x **/facets/*.js --report lcovonly _mocha -- --recursive",
"codecov": "npm run cover && codecov",
"make-slack-client-symlink": "mkdir -p $PWD/node_modules/@slack/client && ln -s $PWD/index.js $PWD/node_modules/@slack/client/index.js",
"make-docs": "node jsdoc.js"
},
"keywords": [
"slack"
],
"author": "Slack Technologies, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/peernohell/node-slack-client.git"
},
"bugs": {
"url": "https://github.com/peernohell/node-slack-client/issues"
},
"dependencies": {
"async": "^2.5.0",
"bluebird": "^3.5.1",
"eventemitter3": "^2.0.3",
"https-proxy-agent": "^2.1.0",
"inherits": "^2.0.3",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"pkginfo": "^0.4.1",
"request": "^2.83.0",
"retry": "^0.10.1",
"sinon": "^4.0.1",
"url-join": "2.0.2",
"winston": "^2.4.0",
"ws": "^3.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"jsdoc-to-markdown": "^3.0.0",
"nock": "^9.0.22"
},
"engines": {
"node": ">= 0.12.x",
"npm": ">= 1.1.x"
}
}