-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
{
"name": "slackbotjs",
"version": "0.1.0",
"description": "A module for creating a SlackBot in Node",
"license": "MIT",
"author": {
"name": "Stephen Cavaliere",
"email": "stephencavaliere@gmail.com"
},
"keywords": [
"slack",
"slackbot",
"bot",
"node-slackbot"
],
"homepage": "https://github.com/delasteve/slackbotjs",
"bugs": {
"url": "https://github.com/delasteve/slackbotjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/delasteve/slackbotjs.git"
},
"main": "lib/slackbot.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha --recursive test/",
"test-watch": "mocha -w --recursive test",
"coverage": "nyc mocha test/ --recursive && nyc report --reporter=text-lcov | coveralls",
"prepublish": "babel src --out-dir lib"
},
"dependencies": {
"slack": "6.1.0"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-core": "6.7.2",
"babel-eslint": "5.0.0",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"chai-as-promised": "5.2.0",
"coveralls": "2.11.8",
"eslint": "2.4.0",
"eslint-plugin-mocha": "2.0.0",
"mocha": "2.4.5",
"nyc": "6.1.1",
"sinon": "1.17.3",
"sinon-chai": "2.8.0"
}
}