-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "squelch-client",
"version": "0.19.0",
"description": "An IRC client for Node.js",
"homepage": "https://github.com/squelch-irc/squelch-client",
"repository": {
"type": "git",
"url": "git://github.com/squelch-irc/squelch-client.git"
},
"main": "dist/client.js",
"dependencies": {
"@rahatarmanahmed/event-kit": "^2.1.0-featureonce",
"debug": "^2.2.0",
"irc-colors": "^1.2.0",
"irc-message": "~3.0.0",
"irc-replies": "^2.0.1",
"through2-map": "^3.0.0"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^4.0.1",
"coffee-script": "^1.10.0",
"coffeelint": "^1.14.2",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.2"
},
"scripts": {
"clean": "rimraf dist",
"lint": "coffeelint src test",
"pretest": "npm run lint",
"test": "nyc --extension .coffee mocha",
"prebuild": "npm run clean && npm run test",
"build": "coffee -c -o dist src",
"prepublish": "npm run build"
},
"keywords": [
"Internet Relay Chat",
"irc",
"client",
"bot"
],
"author": "Rahat Ahmed <[email protected]>",
"license": "MIT"
}