@golemio/fcd 1.0.0-dev.418383440 → 1.0.0
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/CHANGELOG.md +11 -0
- package/package.json +76 -76
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@golemio/fcd",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Golemio Floating Car Data Module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rimraf ./dist && ttsc -p ./tsconfig.build.json",
|
|
9
|
+
"build-minimal": "run-s 'build --sourceMap false --declaration false'",
|
|
10
|
+
"build-watch": "run-s 'build --watch --preserveWatchOutput'",
|
|
11
|
+
"pretest": "golemio-import-test-data",
|
|
12
|
+
"test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r dotenv/config 'test/**/*.test.ts'",
|
|
13
|
+
"test-debug": "run-s 'test --inspect-brk=9230'",
|
|
14
|
+
"code-coverage": "nyc run-s 'test -r source-map-support/register'",
|
|
15
|
+
"generate-docs": "typedoc --out docs/typedoc src",
|
|
16
|
+
"lint": "eslint '{src,test}/**/*.ts'"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"golemio",
|
|
20
|
+
"fcd"
|
|
21
|
+
],
|
|
22
|
+
"author": "Operator ICT, a.s.",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://gitlab.com/operator-ict/golemio/code/modules/fcd"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@commitlint/cli": "^11.0.0",
|
|
30
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
31
|
+
"@golemio/core": "1.1.8",
|
|
32
|
+
"@golemio/eslint-config": "^1.0.2",
|
|
33
|
+
"@golemio/schema-definitions": "2.0.21",
|
|
34
|
+
"@types/body-parser-xml": "^1.1.0",
|
|
35
|
+
"@types/chai": "4.2.3",
|
|
36
|
+
"@types/chai-as-promised": "7.1.2",
|
|
37
|
+
"@types/mocha": "^8.2.0",
|
|
38
|
+
"@types/node": "^14.14.20",
|
|
39
|
+
"@types/sinon": "^9.0.10",
|
|
40
|
+
"@types/supertest": "^2.0.10",
|
|
41
|
+
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
42
|
+
"body-parser": "^1.19.0",
|
|
43
|
+
"body-parser-xml": "^2.0.0",
|
|
44
|
+
"chai": "4.2.0",
|
|
45
|
+
"chai-as-promised": "7.1.1",
|
|
46
|
+
"cross-env": "^7.0.3",
|
|
47
|
+
"dotenv": "^8.2.0",
|
|
48
|
+
"eslint": "^7.17.0",
|
|
49
|
+
"husky": "^4.3.7",
|
|
50
|
+
"mocha": "^8.2.1",
|
|
51
|
+
"npm-run-all": "^4.1.5",
|
|
52
|
+
"nyc": "^15.1.0",
|
|
53
|
+
"prettier": "^2.2.1",
|
|
54
|
+
"pretty-quick": "^3.1.0",
|
|
55
|
+
"rimraf": "^3.0.2",
|
|
56
|
+
"sinon": "^9.2.3",
|
|
57
|
+
"source-map-support": "0.5.19",
|
|
58
|
+
"supertest": "^6.0.1",
|
|
59
|
+
"ts-node": "^9.1.1",
|
|
60
|
+
"ttypescript": "^1.5.12",
|
|
61
|
+
"typedoc": "^0.21.4",
|
|
62
|
+
"typescript": "^4.1.3"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@golemio/core": "^1.0.5"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"ajv": "^8.2.0",
|
|
69
|
+
"xmldom": "github:xmldom/xmldom#0.7.0",
|
|
70
|
+
"xsd2jsonschema": "^0.3.7"
|
|
71
|
+
},
|
|
72
|
+
"resolutions": {
|
|
73
|
+
"@commitlint/cli/**/trim-newlines": "^3.0.1",
|
|
74
|
+
"hosted-git-info": "^3.0.8",
|
|
75
|
+
"xmldom": "github:xmldom/xmldom#0.7.0",
|
|
76
|
+
"mpath": "^0.8.4"
|
|
77
|
+
}
|
|
78
78
|
}
|