This repository has been archived by the owner on Jan 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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": "academical_microservice",
"version": "0.0.1",
"description": "This is a Microservice responsible for the academical calendar part of the HTWK-App.",
"homepage": "https://htwk-app.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/HTWK-App/AcademicalService"
},
"bugs": "https://github.com/HTWK-App/AcademicalService/issues",
"author": "Roy Meissner (https://rmeissn.github.io/)",
"license": "GPL-3.0",
"main": "server.js",
"scripts": {
"clean": "rm -R ./node_modules/ ./coverage/",
"lint": "eslint -c .eslintrc ./**/*.js",
"pretest": "npm run lint",
"test": "npm run test:unit && npm run test:integration",
"posttest": "npm run coverage",
"test:unit": "mocha -C ./tests/unit*.js",
"test:integration": "mocha -C ./tests/integration*.js",
"coverage": "istanbul cover _mocha --include-all-sources ./tests/*.js",
"countLOC": "sloc -f cli-table -k total,source,comment,empty -e node_modules\\|coverage ./",
"countLOC:details": "sloc -f cli-table -d -e node_modules\\|coverage ./",
"start:watch": "nodemon"
},
"dependencies": {
"boom": "4.2.x",
"cheerio": "0.22.x",
"good": "7.1.x",
"good-console": "6.3.x",
"good-squeeze": "^5.0.1",
"hapi": "16.0.x",
"hapi-swagger": "7.4.x",
"inert": "4.0.x",
"joi": "10.0.x",
"request": "2.79.x",
"vision": "4.1.x"
},
"engines": {
"node": "6.x.x"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.11.1",
"eslint-plugin-promise": "^3.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"sloc": "^0.1.11"
}
}