-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.07 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": "reddit-search",
"description": "get results from reddit website",
"version": "1.1.0",
"scripts": {
"babel-node": "babel-node --presets=es2015",
"start": "nodemon --exec npm run babel-node -- ./app.js",
"start:prod": "node lib/app.js",
"clean": "rm -rf lib/",
"build": "npm run clean && babel src -d lib",
"test": "DEV=true mocha --exit test/*.js",
"prepublish": "npm run build && npm run test"
},
"main": "./lib/index.js",
"author": "Idan Dagan",
"license": "ISC",
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "https://github.com/idandagan1/reddit-search"
},
"engine": {
"node": "8.9.4"
},
"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"redis": "^2.8.0",
"express": "^4.16.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"debug": "~2.6.3",
"eslint": "^1.10.3",
"mocha": "^5.0.0",
"redis-mock": "^0.21.0",
"should": "^13.2.1",
"webpack": "^2.4.1"
}
}