forked from kesne/jeopardy-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
46
47
48
49
{
"name": "jeopardybot",
"version": "0.3.0",
"description": "A bot for jeopardy",
"main": "lib/jeopardy.js",
"private": true,
"scripts": {
"postinstall": "npm run build",
"build": "babel src --out-dir lib --copy-files",
"start": "node lib/jeopardy",
"dev": "nodemon --exec babel-node src/jeopardy",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src"
},
"author": "Jordan Gensler <jordangens@gmail.com>",
"license": "MIT",
"dependencies": {
"adaro": "^1.0.0",
"babel": "^5.8.23",
"babel-runtime": "^5.8.25",
"body-parser": "^1.14.1",
"cheerio": "^0.19.0",
"dehumanize-date": "^2.1.0",
"express": "^4.13.3",
"form-data": "^0.2.0",
"imagemin": "^3.2.0",
"imgur": "^0.1.6",
"lockfile": "^1.0.1",
"moment": "^2.10.6",
"mongoose": "^4.1.9",
"native-promise-only": "^0.8.1",
"natural": "^0.2.1",
"node-fetch": "^1.3.3",
"numeral": "^1.5.3",
"pageres": "^2.1.0",
"striptags": "^2.0.3"
},
"engines": {
"node": "4.x"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"cheerio": "^0.19.0",
"eslint": "^1.6.0",
"eslint-config-xo": "^0.6.0",
"eslint-plugin-babel": "^2.1.1",
"nodemon": "^1.7.1"
}
}