-
Notifications
You must be signed in to change notification settings - Fork 662
/
package.json
99 lines (99 loc) · 2.67 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@slack/client",
"version": "4.3.1",
"description": "Slack Developer Kit - official clients for the Web API, RTM API, and Incoming Webhooks",
"author": "Slack Technologies, Inc.",
"license": "MIT",
"keywords": [
"slack",
"web-api",
"rtm-api",
"bot",
"chatbot",
"client",
"http",
"websockets",
"api"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.10.8"
},
"repository": "slackapi/node-slack-sdk",
"bugs": {
"url": "https://github.com/slackapi/node-slack-sdk/issues"
},
"scripts": {
"prepublish": "npm run build",
"precommit": "lint-staged",
"prepush": "npm run build",
"lint": "tslint --project .",
"test": "npm run build && npm run test:spec && npm run test:integration",
"test:spec": "nyc mocha --opts src/mocha.opts src/*.spec.js src/**/*.spec.js",
"test:integration": "mocha --opts test/mocha.opts test/typescript/test.ts",
"coverage": "codecov",
"build": "npm run build:clean && tsc",
"build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output",
"docs": "node support/jsdoc-to-markdown.js",
"docs:jsdoc": "ts2jsdoc"
},
"dependencies": {
"@types/delay": "^2.0.1",
"@types/form-data": "^2.2.1",
"@types/got": "^7.1.7",
"@types/is-stream": "^1.1.0",
"@types/loglevel": "^1.5.3",
"@types/node": "^9.4.7",
"@types/p-cancelable": "^0.3.0",
"@types/p-queue": "^2.3.1",
"@types/p-retry": "^1.0.1",
"@types/retry": "^0.10.2",
"@types/url-join": "^0.8.2",
"@types/ws": "^5.1.1",
"delay": "^2.0.0",
"eventemitter3": "^3.0.0",
"finity": "^0.5.4",
"form-data": "^2.3.1",
"got": "^8.0.3",
"is-stream": "^1.1.0",
"loglevel": "^1.6.1",
"object.entries": "^1.0.4",
"object.getownpropertydescriptors": "^2.0.3",
"object.values": "^1.0.4",
"p-cancelable": "^0.3.0",
"p-queue": "^2.3.0",
"p-retry": "^1.0.0",
"retry": "^0.10.1",
"url-join": "^4.0.0",
"ws": "^5.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"busboy": "^0.2.14",
"capture-stdout": "^1.0.0",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"husky": "^0.14.3",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^6.1.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"nyc": "^11.4.1",
"p-is-promise": "^1.1.0",
"shx": "^0.2.2",
"sinon": "^4.2.2",
"source-map-support": "^0.5.3",
"ts-jsdoc": "^3.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"typescript": "^2.7.1",
"typings-tester": "^0.3.1"
}
}