@golemio/waze-tt 1.0.7-dev.545970844 → 1.0.7
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/package.json +67 -67
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@golemio/waze-tt",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Golemio Waze TT 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
|
+
"test": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' mocha --check-leaks --timeout 120000 -r ts-node/register test/**/*.test.ts --exit",
|
|
12
|
+
"test-debug": "run-s 'test --inspect-brk=9230'",
|
|
13
|
+
"code-coverage": "cross-env NODE_ENV=test TS_NODE_COMPILER='ttypescript' nyc mocha --timeout 120000 -r ts-node/register -r source-map-support/register test/**/*.test.ts --exit",
|
|
14
|
+
"generate-docs": "typedoc --out docs/typedoc src",
|
|
15
|
+
"lint_": "eslint {src,test}/**/*.ts",
|
|
16
|
+
"lint": "eslint -c .eslintrc.js {src,test}/**/*.ts"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"golemio"
|
|
20
|
+
],
|
|
21
|
+
"author": "Operator ICT, a.s.",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://gitlab.com/operator-ict/golemio/code/modules/waze-tt"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@commitlint/cli": "^11.0.0",
|
|
29
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
30
|
+
"@golemio/core": "1.2.10",
|
|
31
|
+
"@golemio/eslint-config": "^1.0.2",
|
|
32
|
+
"@ovos-media/ts-transform-paths": "^1.7.18-1",
|
|
33
|
+
"@types/chai": "4.2.3",
|
|
34
|
+
"@types/chai-as-promised": "7.1.2",
|
|
35
|
+
"@types/mocha": "^8.2.0",
|
|
36
|
+
"@types/node": "^16.11.35",
|
|
37
|
+
"@types/object-hash": "^1.3.0",
|
|
38
|
+
"@types/sinon": "^9.0.10",
|
|
39
|
+
"chai": "4.2.0",
|
|
40
|
+
"chai-as-promised": "7.1.1",
|
|
41
|
+
"cross-env": "^7.0.3",
|
|
42
|
+
"eslint": "^7.17.0",
|
|
43
|
+
"husky": "^4.3.7",
|
|
44
|
+
"mocha": "^8.2.1",
|
|
45
|
+
"npm-run-all": "^4.1.5",
|
|
46
|
+
"nyc": "^15.1.0",
|
|
47
|
+
"prettier": "^2.2.1",
|
|
48
|
+
"pretty-quick": "^3.1.0",
|
|
49
|
+
"rimraf": "^3.0.2",
|
|
50
|
+
"sinon": "^9.2.3",
|
|
51
|
+
"source-map-support": "0.5.19",
|
|
52
|
+
"ts-node": "^10.7.0",
|
|
53
|
+
"ttypescript": "^1.5.13",
|
|
54
|
+
"typedoc": "^0.22.15",
|
|
55
|
+
"typescript": "4.6.4"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@golemio/core": "^1.0.5"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"object-hash": "^2.0.0"
|
|
62
|
+
},
|
|
63
|
+
"resolutions": {
|
|
64
|
+
"hosted-git-info": "^3.0.8",
|
|
65
|
+
"lodash": "^4.17.21",
|
|
66
|
+
"trim-newlines": "^4.0.1",
|
|
67
|
+
"glob-parent": "^5.1.2"
|
|
68
|
+
}
|
|
69
69
|
}
|