forked from hipages/inceptum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 3.85 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "inceptum",
"version": "0.8.34",
"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",
"lint": "tslint -p .",
"docs": "gitbook serve docs",
"deploy-docs": "gitbook build docs && gh-pages -d docs/_book",
"postpublish": "npm run deploy-docs",
"prepublishOnly": "npm run clean && tsc && npm run lint && npm test",
"precommit": "npm run lint",
"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/mocha": "^2.2.41",
"@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.16.2",
"bunyan": "1.8.10",
"bunyan-prettystream": "0.1.3",
"bunyan-redis": "0.1.4",
"bunyan-rotating-file-stream": "1.6.2",
"codacy-coverage": "^2.0.0",
"config": "^1.30.0",
"deep-assign": "2.0.0",
"dtrace-provider": "^0.8.1",
"elasticsearch": "^13.3.1",
"express": "^4.16.3",
"express-jwt": "^3.4.0",
"express-prom-bundle": "^3.3.0",
"express-xml-bodyparser": "^0.3.0",
"express-yields": "^1.0.0",
"generic-pool": "^3.4.2",
"gh-pages": "^1.0.0",
"globby": "^8.0.1",
"js-yaml": "^3.9.1",
"json-schema-deref-sync": "^0.3.1",
"json-stringify-safe": "5.0.1",
"jsonwebtoken": "^8.1.1",
"locutus": "^2.0.5",
"lodash": "^4.17.4",
"module-alias": "2.0.0",
"moment": "^2.15.1",
"mysql": "^2.11.1",
"node-dogstatsd": "0.0.6",
"pg": "^7.0.2",
"prom-client": "^10.2.2",
"prometheus-extended-gauge": "^0.1.2",
"prometheus-gc-stats": "^0.5.0",
"redis": "2.6.5",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.4.15",
"sqs-consumer": "^3.7.0",
"striptags": "^2.1.1",
"swagger-tools": "0.10.1",
"url": "^0.11.0",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.5",
"@types/mysql": "0.0.33",
"@types/node": "7.0.23",
"@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",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"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": "^11.1.0",
"semantic-release": "^15.1.7",
"sinon": "1.17.7",
"ts-mockito": "^2.2.7",
"ts-node": "4.0.1",
"tslint": "^5.8.0",
"tslint-config-shopify": "^2.0.0",
"typedoc": "^0.8.0",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "2.6.1"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}