-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "ARX-7",
"version": "0.4.0",
"author": "Ian Mitchell",
"description": "An IRC Bot",
"repository": "https://github.com/IanMitchell/ARX-7",
"main": "app.js",
"scripts": {
"start": "DEBUG=*,-babel babel-node app.js",
"start-windows": "set DEBUG=*,-babel & babel-node app.js",
"build": "babel src -d lib",
"background": "DEBUG=*,-babel DEBUG_FD=3 NODE_ENV=production node app.js 3> output.log &",
"test": "DEBUG=-* mocha --recursive --compilers js:babel-core/register --require ./test.js",
"test-windows": "set DEBUG=-* & mocha --recursive --compilers js:babel-core/register --require ./test.js"
},
"engines": {
"node": "7.6.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.3.3",
"debug": "2.2.0",
"dotenv": "^4.0.0",
"form-data": "2.1.4",
"he": "1.1.1",
"irc": "0.5.2",
"irc-colors": "1.3.3",
"moment": "2.18.1",
"moment-timezone": "0.5.13",
"node-fetch": "1.6.3",
"twitter": "1.7.0"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "3.1.2"
}
}