-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@sparing-software/sparing-open-api",
"version": "12.1.0",
"description": "Generate http service based on open api schema",
"bin": "./dist/index.js",
"main": "./dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "shx rm -rf dist && tsc",
"prepare": "is-ci || husky install",
"test": "vitest"
},
"keywords": [
"open-api",
"swagger",
"axios",
"typescript",
"http",
"docs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sparingsoftware/sparing-open-api.git"
},
"publishConfig": {
"access": "public"
},
"author": "Panowie Programiści",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparingsoftware/sparing-open-api/issues"
},
"homepage": "https://github.com/sparingsoftware/sparing-open-api#readme",
"dependencies": {
"chalk": "^4.1.0",
"swagger-typescript-api": "^12.0.2",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@semantic-release/git": "^10.0.1",
"@sparing-software/commitlint-config": "^1.0.0",
"@sparing-software/prettier-config": "^1.0.0",
"@types/node": "^18.16.0",
"axios": "^1.7.4",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"semantic-release": "^21.0.5",
"shx": "^0.3.4",
"typescript": "^5.0.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"templates"
]
}