-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "mini-application",
"version": "1.1.0",
"description": "Microservice stubs using Express, Sinon and Event Emitter",
"main": "src/mini-application.js",
"scripts": {
"test:lint": "eslint src",
"test:flow": "flow check",
"test:ci": "npm run test:lint && npm run test:flow && nyc --reporter=lcov mocha --reporter mocha-junit-reporter",
"test": "npm run test:lint && nyc mocha",
"documentation": "documentation build -f html -o documentation/"
},
"bin": "./bin/mini-application",
"license": "MIT",
"author": "Michał Rączka",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"lodash": "^4.17.10",
"lowdb": "^1.0.0",
"shelljs": "^0.8.2",
"sinon": "^6.1.0",
"superagent": "^3.8.3"
},
"optionalDependencies": {
"faker": "^4.1.0",
"moment": "^2.18.1"
},
"devDependencies": {
"chai": "^4.1.2",
"documentation": "^8.0.0",
"eslint": "^5.0.1",
"flow-bin": "^0.75.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^12.0.2"
},
"nyc": {
"include": [
"src"
]
}
}