-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "@oops-tools/swagger2schema",
"version": "1.0.4",
"description": "transform swagger to schema",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "rm -rf dist/* && tsc",
"commit": "git-cz",
"lint": "npx eslint src --ext .js,.ts,tsx",
"lint-fix": "npx eslint src --ext .js,.ts,tsx --fix",
"release": "npm run build && npx release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackson-yyy/swagger2schema.git"
},
"keywords": [
"swagger",
"schema",
"transform"
],
"author": "jacksonyyy",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackson-yyy/swagger2schema/issues"
},
"homepage": "https://github.com/jackson-yyy/swagger2schema#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@release-it/conventional-changelog": "^3.0.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"commander": "^7.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.0.1",
"release-it": "^14.10.0",
"rollup": "^2.45.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.5",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}