forked from completecoding/serverless-auto-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.91 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": "@workduck-io/serverless-auto-swagger",
"version": "2.8.3",
"description": "Automatically generate a swagger file from your Serverless Framework config file",
"main": "dist/index.js",
"homepage": "https://github.com/workduck-io/serverless-auto-swagger",
"repository": {
"type": "git",
"url": "https://github.com/workduck-io/serverless-auto-swagger"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && copyfiles -f ./src/resources/*.py ./dist/resources/",
"check-types": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepare-release": "standard-version",
"prepublish": "npm run build",
"precommit": "npm run test",
"prepare": "is-ci || husky install",
"prettier": "prettier --write '**/*.{ts,js,json,md,yaml}'",
"publish:manual": "np",
"test": "jest",
"test:ci": "npm test -- --silent"
},
"dependencies": {
"@serverless/typescript": "^3.3.0",
"fs-extra": "^10.0.0",
"typeconv": "^1.4.1"
},
"devDependencies": {
"@jest/types": "^28.1.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.1",
"@types/serverless": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"copyfiles": "^2.4.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.1",
"prettier": "^2.5.1",
"standard-version": "^9.3.1",
"ts-jest": "^28.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5"
},
"peerDependencies": {
"serverless": "^2 || ^3"
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"**/*.ts": [
"npm run lint:fix"
],
"**/*.{ts,js,json,md,yaml}": [
"prettier --write"
]
},
"license": "MIT"
}