-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
50
51
{
"name": "tneu-news-microservice",
"version": "1.0.0",
"description": "Microservice for TNEU news",
"main": "index.js",
"scripts": {
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha 'test/**/*.test.js'",
"lint": "eslint . --fix --format=node_modules/eslint-formatter-pretty",
"start": "pm2 start --no-daemon index.js",
"start-dev": "nodemon index.js",
"test": "./node_modules/mocha/bin/mocha 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vladgolubev/tneu-news-microservice.git"
},
"keywords": [
"tneu",
"news",
"microservice"
],
"author": "Vlad Holubiev",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladgolubev/tneu-news-microservice/issues"
},
"homepage": "https://github.com/vladgolubev/tneu-news-microservice#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-google": "^0.6.0",
"eslint-formatter-pretty": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"nodemon": "^1.11.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"bunyan-winston-adapter": "^0.2.0",
"cron": "^1.1.1",
"jsonic": "^0.2.2",
"lodash": "^4.16.4",
"mongodb": "^2.2.10",
"pm2": "^2.0.18",
"random-ext": "^2.5.1",
"restify": "^4.1.1",
"tneu-news": "^1.0.1",
"winston": "^2.2.0",
"winston-papertrail": "^1.0.3"
}
}