-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "@mihaiblaga89/bmw-connecteddrive-api",
"version": "0.5.4",
"description": "BMW ConnectedDrive API JS implementation",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"watch": "npx babel src --watch --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mihaiblaga89/bmw-connecteddrive-api.git"
},
"files": [
"/dist"
],
"keywords": [
"bmw",
"connecteddrive",
"api",
"bmw-connecteddrive"
],
"author": "Mihai Blaga <[email protected]> (https://www.mihaiblaga.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mihaiblaga89/bmw-connecteddrive-api/issues"
},
"homepage": "https://github.com/mihaiblaga89/bmw-connecteddrive-api#readme",
"dependencies": {
"axios": "0.28.1",
"axios-retry": "^3.9.1",
"moment": "^2.30.1",
"querystring": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"babel-polyfill": "^6.26.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-mock-axios": "^4.6.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"@rollup/plugin-node-resolve": "^6.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"jest": {
"collectCoverage": true,
"setupFiles": [
"<rootDir>/jest.init.js"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn test && docma && git add -A && pretty-quick --staged"
}
}
}