-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@dialonce/boot",
"version": "0.4.2",
"description": "Dial Once's node microservice boot script",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"lint": "./node_modules/.bin/eslint .",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test --recursive --timeout=10000 --exit",
"test": "npm run lint && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/node-microservice-boot.git"
},
"author": "Dial Once",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-microservice-boot/issues"
},
"homepage": "https://github.com/dial-once/node-microservice-boot#readme",
"dependencies": {
"bugsnag": "^1.7.0",
"le_node": "^1.3.2",
"winston": "^2.2.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^1.17.6"
}
}