-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "openapi-forge-rust",
"version": "0.1.0",
"description": "OpenAPI-Forge Rust template",
"apiTemplates": [
"src/api_client/api_client.rs.handlebars"
],
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "npm run test:generators",
"test:generators": "cargo t --manifest-path tests/feature-tests/Cargo.toml --test bdd -- --concurrency 1",
"lint:check:all": "eslint .",
"lint:write:all": "eslint --fix .",
"format:check:all": "npm run format:check:rust && npm run format:check:javascript",
"format:check:rust": "ls",
"format:check:javascript": "prettier --check .",
"format:write:all": "npm run format:write:rust && npm run format:write:javascript",
"format:write:rust": "ls",
"format:write:javascript": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkocak-scottlogic/openapi-forge-rust.git"
},
"keywords": [
"openapi-forge",
"rust"
],
"author": "gkocak",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkocak-scottlogic/openapi-forge-rust/issues"
},
"homepage": "https://github.com/gkocak-scottlogic/openapi-forge-rust#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"path": "^0.12.7",
"prettier": "^2.7.1",
"prettier-plugin-rust": "^0.1.8",
"semantic-release": "^19.0.5",
"shelljs": "^0.8.5"
},
"engines": {
"node": ">=16.0.0"
}
}