-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.35 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
70
71
72
73
74
75
76
77
78
{
"name": "@highmobility/auto-api-javascript",
"version": "1.8.0",
"description": "Auto API for JavaScript - the parsing library for the Auto API vehicle data model",
"main": "lib/index.js",
"module": "es/index.js",
"engines": {
"node": ">=v18.0.0",
"npm": ">=8.6.0"
},
"files": [
"es",
"lib"
],
"scripts": {
"build:commonjs": "tsc -p tsconfig.prod.cjs.json",
"build:es": "tsc -p tsconfig.prod.es.json",
"build": "run-s clean build:*",
"clean": "rimraf es lib",
"generate:capabilities": "ts-node -r tsconfig-paths/register scripts/generate-capabilities",
"generate:components": "ts-node -r tsconfig-paths/register scripts/generate-property-components",
"generate:config": "ts-node -r tsconfig-paths/register scripts/generate-configuration",
"generate:lib": "run-s generate:config generate:capabilities generate:components lint:fix",
"lint": "eslint . --cache",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highmobility/auto-api-javascript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/highmobility/auto-api-javascript/issues"
},
"homepage": "https://github.com/highmobility/auto-api-javascript#readme",
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.get": "^4.4.9",
"@types/node": "^20.11.20",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"yamljs": "^0.3.0"
},
"dependencies": {
"abab": "^2.0.6",
"ieee754": "^1.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"tslib": "^2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "npm run lint:fix"
}
}