-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "openapi-forge-csharp",
"version": "0.1.0",
"description": "OpenAPI-Forge CSharp template",
"apiTemplates": [
"ApiClient.cs.handlebars",
"IApiClient.cs.handlebars"
],
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "dotnet test ./tests/FeaturesTests/FeaturesTests.csproj",
"test:generators": "node testGenerators",
"lint:check:all": "eslint .",
"lint:write:all": "eslint --fix .",
"format:check:all": "npm run format:check:csharp && npm run format:check:javascript",
"format:check:csharp": "dotnet format ./tests/FeaturesTests/FeaturesTests.csproj --verify-no-changes",
"format:check:javascript": "prettier --check .",
"format:write:all": "npm run format:write:csharp && npm run format:write:javascript",
"format:write:csharp": "dotnet format ./tests/FeaturesTests/FeaturesTests.csproj",
"format:write:javascript": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/murcikan-scottlogic/openapi-forge-csharp.git"
},
"keywords": [
"openapi-forge",
"csharp",
"c#"
],
"author": "murcikan",
"license": "MIT",
"bugs": {
"url": "https://github.com/murcikan-scottlogic/openapi-forge-csharp/issues"
},
"homepage": "https://github.com/murcikan-scottlogic/openapi-forge-csharp#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.24.0",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"path": "^0.12.7",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5"
},
"engines": {
"node": ">=16.0.0"
}
}