@golemio/city-districts 1.0.4-dev.506732998 → 1.0.5-dev.544272522
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -4
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/integration-engine/CityDistrictsWorker.js +7 -11
- package/dist/integration-engine/CityDistrictsWorker.js.map +1 -1
- package/dist/integration-engine/index.d.ts +1 -0
- package/dist/integration-engine/index.js +6 -1
- package/dist/integration-engine/index.js.map +1 -1
- package/dist/integration-engine/models/CityDistrictModel.d.ts +5 -0
- package/dist/integration-engine/models/CityDistrictModel.js +40 -0
- package/dist/integration-engine/models/CityDistrictModel.js.map +1 -0
- package/dist/output-gateway/index.js +5 -1
- package/dist/output-gateway/index.js.map +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -1,7 +1,46 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<p>
|
|
3
|
+
<a href="https://operatorict.cz">
|
|
4
|
+
<img src="https://gitlab.com/operator-ict/golemio/code/modules/core/-/raw/development/.assets/oict_logo.png" alt="oict" width="100px" height="100px" />
|
|
5
|
+
</a>
|
|
6
|
+
<a href="https://golemio.cz">
|
|
7
|
+
<img src="https://gitlab.com/operator-ict/golemio/code/modules/core/-/raw/development/.assets/golemio_logo.png" alt="golemio" width="100px" height="100px" />
|
|
8
|
+
</a>
|
|
9
|
+
</p>
|
|
2
10
|
|
|
3
|
-
|
|
11
|
+
<h1>@golemio/city-districts</h1>
|
|
4
12
|
|
|
5
|
-
|
|
13
|
+
<p>
|
|
14
|
+
<a href="https://gitlab.com/operator-ict/golemio/code/modules/city-districts/commits/master">
|
|
15
|
+
<img src="https://gitlab.com/operator-ict/golemio/code/modules/city-districts/badges/master/pipeline.svg" alt="pipeline">
|
|
16
|
+
</a>
|
|
17
|
+
<a href="https://gitlab.com/operator-ict/golemio/code/modules/city-districts/commits/master">
|
|
18
|
+
<img src="https://gitlab.com/operator-ict/golemio/code/modules/city-districts/badges/master/coverage.svg" alt="coverage">
|
|
19
|
+
</a>
|
|
20
|
+
<a href="./LICENSE">
|
|
21
|
+
<img src="https://img.shields.io/npm/l/@golemio/city-districts" alt="license">
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
6
24
|
|
|
7
|
-
|
|
25
|
+
<p>
|
|
26
|
+
<a href="#installation">Installation</a> · <a href="./docs">Documentation</a> · <a href="https://operator-ict.gitlab.io/golemio/code/modules/city-districts">TypeDoc</a>
|
|
27
|
+
</p>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
This module is intended for use with Golemio services. Refer [here](https://gitlab.com/operator-ict/golemio/code/modules/core/-/blob/development/README.md) for further information on usage, local development and more.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
The APIs may be unstable. Therefore, we recommend to install this module as an exact version.
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Latest version
|
|
38
|
+
yarn add --exact @golemio/city-districts@latest
|
|
39
|
+
|
|
40
|
+
# Development version
|
|
41
|
+
yarn add --exact @golemio/city-districts@dev
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
<!-- ## Description -->
|
|
45
|
+
|
|
46
|
+
<!-- Insert module-specific info here -->
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kBAAkB;AAClB,gFAA+C;AAC/C,wEAA2C;AAC3C,gFAAgD"}
|
|
@@ -8,15 +8,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
8
8
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
11
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
15
|
exports.CityDistrictsWorker = void 0;
|
|
13
|
-
const
|
|
16
|
+
const index_1 = require("../schema-definitions/index");
|
|
14
17
|
const config_1 = require("@golemio/core/dist/integration-engine/config");
|
|
15
18
|
const datasources_1 = require("@golemio/core/dist/integration-engine/datasources");
|
|
16
19
|
const models_1 = require("@golemio/core/dist/integration-engine/models");
|
|
17
20
|
const workers_1 = require("@golemio/core/dist/integration-engine/workers");
|
|
18
|
-
const
|
|
21
|
+
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
|
|
19
22
|
const _1 = require("./");
|
|
23
|
+
const CityDistrictModel_1 = __importDefault(require("./models/CityDistrictModel"));
|
|
20
24
|
class CityDistrictsWorker extends workers_1.BaseWorker {
|
|
21
25
|
constructor() {
|
|
22
26
|
super();
|
|
@@ -48,15 +52,7 @@ class CityDistrictsWorker extends workers_1.BaseWorker {
|
|
|
48
52
|
},
|
|
49
53
|
}, new golemio_validator_1.Validator(index_1.CityDistricts.name + "ModelValidator", index_1.CityDistricts.outputMongooseSchemaObject));
|
|
50
54
|
this.transformation = new _1.CityDistrictsMongoTransformation();
|
|
51
|
-
this.postgresModel = new
|
|
52
|
-
outputSequelizeAttributes: index_1.CityDistricts.postgres.outputSequelizeAttributes,
|
|
53
|
-
pgTableName: index_1.CityDistricts.postgres.pgTableName,
|
|
54
|
-
savingType: "insertOrUpdate",
|
|
55
|
-
pgSchema: "common",
|
|
56
|
-
sequelizeAdditionalSettings: {
|
|
57
|
-
timestamps: false,
|
|
58
|
-
},
|
|
59
|
-
}, new golemio_validator_1.Validator(index_1.CityDistricts.name + "ModelPGValidator", index_1.CityDistricts.postgres.outputMongooseSchemaObject));
|
|
55
|
+
this.postgresModel = new CityDistrictModel_1.default();
|
|
60
56
|
this.postgresTransformation = new _1.CityDistrictsPostgresTransformation();
|
|
61
57
|
}
|
|
62
58
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CityDistrictsWorker.js","sourceRoot":"","sources":["../../src/integration-engine/CityDistrictsWorker.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CityDistrictsWorker.js","sourceRoot":"","sources":["../../src/integration-engine/CityDistrictsWorker.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,uDAA2C;AAC3C,yEAAsE;AACtE,mFAA2H;AAC3H,yEAAyF;AACzF,2EAA2E;AAC3E,mFAAwE;AACxE,yBAA2F;AAC3F,mFAA4D;AAE5D,MAAa,mBAAoB,SAAQ,oBAAU;IAO/C;QACI,KAAK,EAAE,CAAC;QAoCL,oBAAe,GAAG,CAAO,GAAQ,EAAiB,EAAE;YACvD,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC;YAC5C,MAAM,eAAe,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;YAClE,MAAM,uBAAuB,GAAG,MAAM,IAAI,CAAC,sBAAsB,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;YAClF,MAAM,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;YACvC,MAAM,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC;QAC3D,CAAC,CAAA,CAAC;QAzCE,IAAI,CAAC,UAAU,GAAG,IAAI,wBAAU,CAC5B,qBAAa,CAAC,IAAI,GAAG,YAAY,EACjC,IAAI,kCAAoB,CAAC;YACrB,OAAO,EAAE,EAAE;YACX,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,eAAM,CAAC,WAAW,CAAC,aAAa;SACxC,CAAC,EACF,IAAI,kCAAoB,CAAC,EAAE,WAAW,EAAE,UAAU,EAAE,CAAC,EACrD,IAAI,6BAAS,CAAC,qBAAa,CAAC,IAAI,GAAG,qBAAqB,EAAE,qBAAa,CAAC,8BAA8B,CAAC,CAC1G,CAAC;QACF,IAAI,CAAC,KAAK,GAAG,IAAI,mBAAU,CACvB,qBAAa,CAAC,IAAI,GAAG,OAAO,EAC5B;YACI,cAAc,EAAE,eAAe;YAC/B,mBAAmB,EAAE,qBAAa,CAAC,mBAAmB;YACtD,0BAA0B,EAAE,qBAAa,CAAC,0BAA0B;YACpE,WAAW,EAAE,YAAY;YACzB,UAAU,EAAE,gBAAgB;YAC5B,UAAU,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,eAAe,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,eAAe,EAAE,EAAE,EAAE,CAAC;YACrG,YAAY,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBACnB,CAAC,CAAC,QAAQ,CAAC,WAAW,GAAG,CAAC,CAAC,QAAQ,CAAC,WAAW,CAAC;gBAChD,CAAC,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC;gBACtC,CAAC,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC;gBACtC,CAAC,CAAC,UAAU,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC;gBAClD,OAAO,CAAC,CAAC;YACb,CAAC;SACJ,EACD,IAAI,6BAAS,CAAC,qBAAa,CAAC,IAAI,GAAG,gBAAgB,EAAE,qBAAa,CAAC,0BAA0B,CAAC,CACjG,CAAC;QACF,IAAI,CAAC,cAAc,GAAG,IAAI,mCAAgC,EAAE,CAAC;QAE7D,IAAI,CAAC,aAAa,GAAG,IAAI,2BAAkB,EAAE,CAAC;QAC9C,IAAI,CAAC,sBAAsB,GAAG,IAAI,sCAAmC,EAAE,CAAC;IAC5E,CAAC;CASJ;AAnDD,kDAmDC"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -15,4 +19,5 @@ __exportStar(require("./CityDistrictsMongoTransformation"), exports);
|
|
|
15
19
|
__exportStar(require("./CityDistrictsPostgresTransformation"), exports);
|
|
16
20
|
__exportStar(require("./CityDistrictsWorker"), exports);
|
|
17
21
|
__exportStar(require("./queueDefinitions"), exports);
|
|
22
|
+
__exportStar(require("./models/CityDistrictModel"), exports);
|
|
18
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/integration-engine/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/integration-engine/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iBAAiB;AACjB,qEAAmD;AACnD,wEAAsD;AACtD,wDAAsC;AACtC,qDAAmC;AACnC,6DAA2C"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
const integration_engine_1 = require("@golemio/core/dist/integration-engine");
|
|
16
|
+
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
|
|
17
|
+
const schema_definitions_1 = require("../../schema-definitions");
|
|
18
|
+
const sequelize_1 = __importDefault(require("@golemio/core/dist/shared/sequelize"));
|
|
19
|
+
class CityDistrictsModel extends integration_engine_1.PostgresModel {
|
|
20
|
+
constructor() {
|
|
21
|
+
super(schema_definitions_1.CityDistricts.name + "PGModel", {
|
|
22
|
+
outputSequelizeAttributes: schema_definitions_1.CityDistricts.postgres.outputSequelizeAttributes,
|
|
23
|
+
pgTableName: schema_definitions_1.CityDistricts.postgres.pgTableName,
|
|
24
|
+
savingType: "insertOrUpdate",
|
|
25
|
+
pgSchema: "common",
|
|
26
|
+
sequelizeAdditionalSettings: {
|
|
27
|
+
timestamps: false,
|
|
28
|
+
},
|
|
29
|
+
}, new golemio_validator_1.Validator(schema_definitions_1.CityDistricts.name + "ModelPGValidator", schema_definitions_1.CityDistricts.postgres.outputMongooseSchemaObject));
|
|
30
|
+
this.getDistrict = (longitude, latitude) => __awaiter(this, void 0, void 0, function* () {
|
|
31
|
+
var _a;
|
|
32
|
+
const result = yield this.findOne({
|
|
33
|
+
where: sequelize_1.default.fn("ST_Intersects", sequelize_1.default.col("geom"), sequelize_1.default.fn("ST_SetSRID", sequelize_1.default.fn("ST_MakePoint", longitude, latitude), 4326)),
|
|
34
|
+
});
|
|
35
|
+
return result ? (_a = result.dataValues.slug) !== null && _a !== void 0 ? _a : result.dataValues.district_name : null;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.default = CityDistrictsModel;
|
|
40
|
+
//# sourceMappingURL=CityDistrictModel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CityDistrictModel.js","sourceRoot":"","sources":["../../../src/integration-engine/models/CityDistrictModel.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,8EAA8E;AAC9E,mFAAwE;AACxE,iEAAuD;AACvD,oFAA4D;AAE5D,MAAqB,kBAAmB,SAAQ,kCAAa;IACzD;QACI,KAAK,CACD,kCAAa,CAAC,IAAI,GAAG,SAAS,EAC9B;YACI,yBAAyB,EAAE,kCAAa,CAAC,QAAQ,CAAC,yBAAyB;YAC3E,WAAW,EAAE,kCAAa,CAAC,QAAQ,CAAC,WAAW;YAC/C,UAAU,EAAE,gBAAgB;YAC5B,QAAQ,EAAE,QAAQ;YAClB,2BAA2B,EAAE;gBACzB,UAAU,EAAE,KAAK;aACpB;SACJ,EACD,IAAI,6BAAS,CAAC,kCAAa,CAAC,IAAI,GAAG,kBAAkB,EAAE,kCAAa,CAAC,QAAQ,CAAC,0BAA0B,CAAC,CAC5G,CAAC;QAGC,gBAAW,GAAG,CAAO,SAAiB,EAAE,QAAgB,EAAmB,EAAE;;YAChF,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;gBAC9B,KAAK,EAAE,mBAAS,CAAC,EAAE,CACf,eAAe,EACf,mBAAS,CAAC,GAAG,CAAC,MAAM,CAAC,EACrB,mBAAS,CAAC,EAAE,CAAC,YAAY,EAAE,mBAAS,CAAC,EAAE,CAAC,cAAc,EAAE,SAAS,EAAE,QAAQ,CAAC,EAAE,IAAI,CAAC,CACtF;aACJ,CAAC,CAAC;YAEH,OAAO,MAAM,CAAC,CAAC,CAAC,MAAA,MAAM,CAAC,UAAU,CAAC,IAAI,mCAAI,MAAM,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC,IAAI,CAAC;QACrF,CAAC,CAAA,CAAC;IAZF,CAAC;CAaJ;AA5BD,qCA4BC"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/output-gateway/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/output-gateway/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC;AACrC,wDAAsC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/city-districts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5-dev.544272522",
|
|
4
4
|
"description": "Golemio City Districts Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"test-debug": "run-s 'test --inspect-brk=9230'",
|
|
14
14
|
"code-coverage": "nyc run-s 'test -r source-map-support/register'",
|
|
15
15
|
"generate-docs": "typedoc --out docs/typedoc src",
|
|
16
|
-
"lint": "eslint
|
|
16
|
+
"lint": "eslint \"{src,test}/**/*.ts\""
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"golemio"
|
|
@@ -27,32 +27,32 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@commitlint/cli": "^11.0.0",
|
|
29
29
|
"@commitlint/config-conventional": "^11.0.0",
|
|
30
|
-
"@golemio/core": "1.2.
|
|
31
|
-
"@golemio/eslint-config": "^1.0
|
|
30
|
+
"@golemio/core": "1.2.10-dev.544242823",
|
|
31
|
+
"@golemio/eslint-config": "^1.1.0",
|
|
32
|
+
"@ovos-media/ts-transform-paths": "^1.7.18-1",
|
|
32
33
|
"@types/chai": "4.2.3",
|
|
33
34
|
"@types/chai-as-promised": "7.1.2",
|
|
34
35
|
"@types/mocha": "^9.1.0",
|
|
35
|
-
"@types/node": "^
|
|
36
|
+
"@types/node": "^16.11.35",
|
|
36
37
|
"@types/sinon": "^9.0.10",
|
|
37
|
-
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
38
38
|
"chai": "4.2.0",
|
|
39
39
|
"chai-as-promised": "7.1.1",
|
|
40
40
|
"cross-env": "^7.0.3",
|
|
41
41
|
"dotenv": "^8.2.0",
|
|
42
|
-
"eslint": "^
|
|
42
|
+
"eslint": "^8.1.1",
|
|
43
43
|
"husky": "^4.3.7",
|
|
44
44
|
"mocha": "^9.2.2",
|
|
45
45
|
"npm-run-all": "^4.1.5",
|
|
46
46
|
"nyc": "^15.1.0",
|
|
47
|
-
"prettier": "^2.
|
|
48
|
-
"pretty-quick": "^3.1.
|
|
47
|
+
"prettier": "^2.5.1",
|
|
48
|
+
"pretty-quick": "^3.1.3",
|
|
49
49
|
"rimraf": "^3.0.2",
|
|
50
50
|
"sinon": "^9.2.3",
|
|
51
51
|
"source-map-support": "0.5.19",
|
|
52
|
-
"ts-node": "^
|
|
53
|
-
"ttypescript": "^1.5.
|
|
54
|
-
"typedoc": "^0.22.
|
|
55
|
-
"typescript": "
|
|
52
|
+
"ts-node": "^10.7.0",
|
|
53
|
+
"ttypescript": "^1.5.13",
|
|
54
|
+
"typedoc": "^0.22.15",
|
|
55
|
+
"typescript": "4.6.4"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@golemio/core": "^1.0.5"
|