forked from Hacksore/bluelinky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "bluelinky",
"version": "8.1.2",
"description": "An unofficial nodejs API wrapper for Hyundai bluelink",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"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": "cross-env LOG_LEVEL=debug ts-node debug.ts",
"debug2": "cross-env LOG_LEVEL=debug ts-node debug2.ts",
"eu:export:cfb": "cross-env LOG_LEVEL=debug ts-node ./scripts/export_eu_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",
"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": "^25.1.4",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-jest": "^26.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.3.1",
"husky": "^4.2.5",
"inquirer": "^7.3.0",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.1.1",
"ts-node": "^9.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
}
}