-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.58 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
{
"name": "iobroker.tractive-gps",
"version": "2.1.0",
"description": "This adapter allows you to connect to the Tractive GPS service and retrieve the location of your pets.",
"author": {
"name": "xXBJXx",
"email": "[email protected]"
},
"contributors": [
{
"name": "xXBJXx",
"email": "[email protected]"
},
{
"name": "iobroker-community-adapters",
"email": "[email protected]"
}
],
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.tractive-gps",
"license": "MIT",
"keywords": [
"ioBroker",
"tractive",
"gps",
"geoposition",
"geolocation",
"tracking",
"dog",
"cat",
"pet"
],
"repository": {
"type": "git",
"url": "https://github.com/iobroker-community-adapters/ioBroker.tractive-gps.git"
},
"engines": {
"node": ">= 20"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"axios": "^1.7.7",
"cron": "^3.2.1",
"dayjs": "^1.11.13",
"source-map-support": "^0.5.21",
"geo-position.ts": "^1.4.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/testing": "^5.0.0",
"@tsconfig/node16": "^16.1.3",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/cron": "^2.4.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"tiny-glob": "^0.2.9",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"main": "build/main.js",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).json",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"admin/build/",
"build/",
"www/",
"io-package.json",
"LICENSE"
],
"scripts": {
"build": "npm run prebuild:ts && npm run build:ts && npm run prebuild:react && npm run build:react",
"prebuild:ts": "rimraf build",
"build:ts": "tsc --project src/tsconfig.build.json",
"watch:ts": "tsc --project src/tsconfig.build.json --watch",
"prebuild:react": "rimraf admin/static && rimraf src-admin/build && cd src-admin && npm i -f",
"build:react": "cd src-admin && npm run build",
"test:ts": "mocha --config test/mocharc.custom.json src/**/*.test.ts",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:ts && npm run test:package",
"check": "tsc --noEmit -p src/tsconfig.json && cd src-admin && npm i -f && cd .. && tsc --noEmit -p src-admin/tsconfig.json",
"lint": "cd src && eslint --ext .ts,.tsx ./ && cd ../src-admin && eslint --ext .ts,.tsx ./",
"translate": "translate-adapter",
"release": "release-script",
"npm": "npm i -f && cd src-admin && npm i -f"
},
"bugs": {
"url": "https://github.com/iobroker-community-adapters/ioBroker.tractive-gps/issues"
},
"readmeFilename": "README.md"
}