This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 KB
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
{
"name": "teslarest",
"version": "1.0.4",
"description": "",
"main": "./out/main.js",
"types": "./out/main.d.ts",
"type": "commonjs",
"files": ["out/main.js", "out/main.d.ts", "out/config/LogConfig.js", "out/config/LogConfig.d.ts", "README.md", "package.json"],
"author": {
"name": "Pascal Berski",
"url": "https://github.com/pascalberski"
},
"repository": {
"type": "git",
"url": "https://github.com/pascalberski/teslaRESTasync.git"
},
"license": "ISC",
"homepage": "https://github.com/pascalberski/teslaRESTasync#readme",
"bugs": {
"url": "https://github.com/pascalberski/teslaRESTasync/issues"
},
"scripts": {
"lint": "eslint ./src/**/* --fix",
"build": "eslint ./src/**/* --fix && tsc",
"start": "node ./out/main.js",
"test": "npm run build && node -e \"require('./out/test.js').test()\"",
"only-test": "node -e \"require('./out/test.js').test()\""
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^1.3.5",
"typescript-logging": "^2.1.0",
"typescript-logging-log4ts-style": "^2.1.0"
}
}