-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
126 lines (126 loc) · 3.3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "inceptum",
"version": "0.9.15",
"description": "hipages take on the foundational library for enterprise-grade apps written in NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist docs/_book && mkdir docs/_book",
"test": "NODE_ENV=test nyc mocha",
"test_html": "NODE_ENV=test nyc --reporter=html --reporter=text-summary --reporter=text mocha",
"itest": "NODE_ENV=test nyc --reporter=lcov --report-dir=icoverage mocha itest",
"coverage": "codecov -f coverage/lcov.info",
"prepublishOnly": "npm run clean && tsc && npm test",
"prepush": "node .checkpush.js",
"release": "yarn prepublishOnly && semantic-release",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/hipages/inceptum.git"
},
"engine": {
"node": ">7.0.0"
},
"files": [
"dist"
],
"author": "Hipages",
"license": "Apache-2.0",
"directories": {
"lib": "dist",
"test": "test"
},
"dependencies": {
"@types/bunyan": "1.8.0",
"@types/elasticsearch": "^5.0.16",
"@types/express": "^4.16.0",
"@types/generic-pool": "^3.1.2",
"@types/jsonwebtoken": "^7.2.5",
"@types/pg": "6.1.45",
"@types/swagger-tools": "^0.10.6",
"@types/xml2js": "^0.4.2",
"amqplib": "^0.5.2",
"aws-sdk": "^2.102.0",
"axios": "^0.21.3",
"bunyan": "1.8.15",
"bunyan-prettystream": "0.1.3",
"bunyan-rotating-file-stream": "^2.0.0",
"config": "^1.30.0",
"elasticsearch": "^16.3.1",
"express": "^4.16.3",
"express-prom-bundle": "^3.3.0",
"express-xml-bodyparser": "^0.3.0",
"generic-pool": "^3.4.2",
"globby": "10.0.0",
"js-yaml": "^3.9.1",
"json-stringify-safe": "5.0.1",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.21",
"module-alias": "2.0.0",
"mysql": "^2.17.1",
"pg": "^7.0.2",
"prom-client": "^10.2.2",
"prometheus-extended-gauge": "^0.1.2",
"prometheus-gc-stats": "^1.1.0",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.4.15",
"sqs-consumer": "^3.7.0",
"swagger-tools": "0.10.4",
"url": "^0.11.0",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.5",
"@types/mocha": "^5.2.6",
"@types/mysql": "0.0.33",
"@types/node": "^10.0.0",
"@types/source-map-support": "^0.2.28",
"@types/xmlbuilder": "^0.0.32",
"co-mocha": "^1.1.2",
"codecov": "^2.2.0",
"doubleagent": "^1.1.0",
"husky": "^0.11.6",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mocha-typescript": "1.1.2",
"mock-fs": "^4.4.2",
"must": "^0.13.4",
"nyc": "^15.1.0",
"sinon": "1.17.7",
"ts-mockito": "^2.2.7",
"ts-node": "4.0.1",
"typedoc": "^0.8.0",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "^4.8.4"
},
"resolutions": {
"url-parse": ">=1.5.8",
"growl": ">=1.10.0",
"mpath": ">=0.8.4",
"lodash": ">4.17.20",
"cryptiles": ">=4.1.2",
"minimist": ">=1.2.6"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}