forked from SockDrawer/sockbot-provider-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 940 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
{
"name": "sockbot-irc",
"version": "1.0.0",
"description": "An ircprovider for sockbot",
"main": "src/index.js",
"scripts": {
"test": "eslint . && istanbul cover node_modules/mocha/bin/_mocha -- test/**.js",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yamikuronue/sockbot-irc.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yamikuronue/sockbot-irc/issues"
},
"homepage": "https://github.com/yamikuronue/sockbot-irc#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-string": "^1.3.0",
"eslint": "^3.11.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"debug": "^2.3.3",
"irc": "^0.5.2"
}
}