-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 872 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
37
38
39
{
"name": "fatbot",
"description": "An easy to use ES6 IRC bot framework",
"author": "Franco Bouly <[email protected]>",
"version": "1.0.0",
"scripts": {
"simple": "babel-node --presets es2015 bots/simple.js",
"start": "babel-node --presets es2015 ",
"bot": "npm run start bots/simple.js"
},
"keywords": [
"es6",
"chat",
"irc",
"bot"
],
"repository": {
"type": "git",
"url": "git://github.com/rayfranco/fatbot.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/rayfranco/fatbot/issues"
},
"dependencies": {
"colors": "^1.1.2",
"irc": "0.5.0"
},
"main": "./lib/fatbot.js",
"bin": {
"fatbot": "./lib/cli.js"
},
"engine": "node >= 0.4.1",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"commander": "^2.9.0"
}
}