-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "node-express-microservice",
"version": "1.2.2",
"description": "Creates a new simple microservice server using express and nodejs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lukebellamy053/node-express-microservice"
},
"scripts": {
"test": "npm run test:security && npm run test:coverage",
"test:security": "snyk test",
"test:unit": "mocha -r ts-node/register \"test/**/*.spec.ts\" --reporter mocha-multi-reporters --reporter-options configFile=.mocha/config.json --exit",
"test:coverage": "nyc npm run test:unit",
"prepare": "tsc",
"update:minor": "call grunt bump && tsc --skipLibCheck & exit 0",
"clean": "git clean -fx && git clean -fd",
"typedoc": "npm run markdowndoc && npm run htmldoc",
"markdowndoc": "typedoc --theme markdown --out docs/md ./src",
"htmldoc": "typedoc --out docs/html ./src",
"deploy": "npm publish"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"reporter": [
"text-summary",
"lcov"
],
"lines": 80,
"extension": [
".ts"
],
"include": [
"**/src/**"
],
"exclude": [
"**/test/**",
"**/*.d.ts",
"src/Interfaces"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"body-parser": "^1.18.3",
"ejs": "^2.6.2",
"express": "^4.16.3",
"express-http-proxy": "^1.5.1",
"jsonwebtoken": "^8.3.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/es6-shim": "^0.31.37",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"grunt": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.1",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"mocha-multi-reporters": "^1.1.7",
"mochawesome": "^4.0.1",
"nyc": "^14.1.1",
"sinon": "^7.4.0",
"snyk": "^1.208.0",
"ts-mocha": "^6.0.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.1",
"typescript": "^3.5.3"
},
"author": "Luke Bellamy",
"license": "MIT Licence"
}