-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "serverless-openapi3-plugin",
"version": "0.1.4",
"description": "Serverless plugin to resolve $ref syntax of OpenAPI3",
"main": "dist/index.js",
"keywords": [
"OpenApi",
"serverless"
],
"repository": "https://github.com/ikkyu-3/serverless-openapi3-plugin.git",
"author": "ikkyu-3",
"private": false,
"bugs": {
"url": "https://github.com/ikkyu-3/serverless-openapi3-plugin/issues"
},
"homepage": "https://github.com/ikkyu-3/serverless-openapi3-plugin/blob/master/README.md",
"license": "MIT",
"scripts": {
"build": "tsc",
"deploy": "yarn build && cd serverless && serverless deploy",
"teardown": "cd serverless && serverless remove",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.24",
"@types/serverless": "^1.72.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"serverless": "^1.75.1",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": "eslint --fix"
},
"dependencies": {
"js-yaml": "^3.14.0",
"json-refs": "^3.0.15",
"lodash": "^4.17.19"
}
}