-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "nodejs-connected-drive",
"version": "3.1.1",
"description": "NodeJS client for BMW Connected Drive",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jørgen Grimnes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jorgenkg/nodejs-connected-drive.git"
},
"scripts": {
"prepare": "npx husky install && npx patch-package",
"test": "npx tape --enable-source-maps --unhandled-rejections=strict dist/test/integration/*.js",
"dist": "rm -rf dist/ && npx tsc --build tsconfig.prod.json && rm dist/lib/@types/*.js",
"release": "npm run dist && npx standard-version -a",
"generate-docs": "npx typedoc --excludePrivate --hideGenerator --includeVersion --readme ./README.md --out docs index.ts lib"
},
"dependencies": {
"debug": "^4.3.2",
"got": "^11.8.2"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@koa/router": "10.1.1",
"@sinonjs/fake-timers": "9.1.2",
"@types/debug": "4.1.12",
"@types/got": "9.6.12",
"@types/koa": "2.15.0",
"@types/koa__router": "8.0.11",
"@types/koa-bodyparser": "4.3.12",
"@types/node": "16.18.121",
"@types/sinonjs__fake-timers": "8.1.5",
"@types/tape": "4.13.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"changelog-parser": "2.8.1",
"eslint": "8.57.1",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"husky": "7.0.4",
"koa": "2.15.3",
"koa-bodyparser": "4.4.1",
"patch-package": "6.5.1",
"standard-version": "9.5.0",
"tape": "5.6.3",
"typedoc": "0.26.6",
"typescript": "4.9.5"
},
"keywords": [
"bmwconnecteddrive",
"bmw connected drive",
"connected drive",
"connecteddrive",
"bmw"
],
"engines": {
"node": ">=12.0"
},
"files": [
"dist/lib",
"dist/index*"
]
}