-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
52
{
"name": "ms-messenger",
"version": "1.0.0",
"description": "messenger microservice",
"main": "index.js",
"scripts": {
"test": "ava",
"coveralls": "nyc --all npm test && nyc report --reporter=text-lcov | coveralls",
"documentation": "documentation index.js -o docs/ -f html -g",
"gendocs": "./generate_docs.sh",
"jshint": "jshint --exclude ./node_modules ."
},
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^1.2.0",
"forecast": "^0.2.1",
"giphy-api": "^1.1.11",
"joi": "^7.1.0",
"mongodb": "^2.1.3",
"ms-utilities": "^4.0.0",
"opbeat": "^3.6.6",
"seneca": "^1.0.0",
"seneca-rabbitmq-transport": "^0.2.1"
},
"devDependencies": {
"ava": "^0.7.0",
"coveralls": "^2.11.6",
"hoek": "^3.0.4",
"jshint": "^2.9.1",
"nyc": "^5.0.1",
"precommit-hook": "^3.0.0",
"proxyquire": "^1.7.3"
},
"config": {
"nyc": {
"exclude": [
"**/*.stub.js",
"**/database.js",
"index.js",
"test",
"test{,-*}.js"
],
"include": [
"**/*.js"
]
}
},
"pre-commit": [
"jshint"
]
}