-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
64 lines (64 loc) · 2 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
{
"name": "bluelinky",
"version": "8.3.1",
"description": "An unofficial nodejs API wrapper for Hyundai bluelink",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist/ && rollup -c rollup.config.js",
"dev": "rollup -w -c rollup.config.js",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write './src/**/*.{js,jsx,ts,tsx}'",
"prepublishOnly": "npm run build",
"test": "jest --verbose",
"debug": "ts-node -p debug.ts",
"eu:export:cfb": "cross-env LOG_LEVEL=debug ts-node ./scripts/export_eu_cfb.ts",
"au:export:cfb": "cross-env LOG_LEVEL=debug ts-node ./scripts/export_au_cfb.ts",
"test-ca": "npm run build && node test-ca.js",
"watch": "tsc -w"
},
"author": "Hacksore",
"license": "MIT",
"dependencies": {
"got": "^9.6.0",
"push-receiver": "^2.1.1",
"tough-cookie": "^4.0.0",
"undici": "^6.10.2",
"winston": "^3.3.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://github.com/Hacksore/bluelinky",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/got": "^9.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^4.2.5",
"inquirer": "^7.3.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.7.1",
"rollup": "^4.13.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}