This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
43
44
45
46
{
"name": "connected-car",
"version": "1.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rimraf dist && rimraf docs",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --cache --config .eslintrc.js src/**/*.ts",
"type-check": "tsc -noEmit",
"docs": "typedoc",
"semantic-release": "semantic-release"
},
"repository": "https://github.com/ianjwhite99/connected-car-node-sdk.git",
"author": "Ian White <iwhite99@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.21",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"jest": "^26.6.3",
"prettier": "^2.0.4",
"prettier-airbnb-config": "^1.0.0",
"semantic-release": "^18.0.1",
"ts-jest": "^26.5.4",
"typedoc": "github:ramiroaisen/typedoc",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^4.0.2",
"pkce-challenge": "^3.0.0",
"tough-cookie": "^4.0.0"
}
}