-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "open-ev-data-api",
"version": "0.0.0-development",
"description": "OpenEV Data API - A high-performance REST API for electric vehicle specifications",
"main": "index.js",
"scripts": {
"build": "cargo build --release",
"check": "cargo check --all",
"test": "cargo test --all",
"semantic-release": "semantic-release",
"commitlint": "commitlint --edit",
"prepare": "husky install || true"
},
"repository": {
"type": "git",
"url": "https://github.com/open-ev-data/open-ev-data-api.git"
},
"keywords": [
"electric-vehicles",
"ev",
"api",
"rest",
"rust",
"axum"
],
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"semantic-release": "^25.0.2"
},
"engines": {
"node": ">=22.14.0"
}
}