-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1012 Bytes
/
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
{
"name": "@byu-oit/oas-ts",
"version": "0.0.0",
"description": "Typescript definitions for the OpenAPI (and Swagger 2.0) specification",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "tsc"
},
"repository": {
"type": "git",
"url": "https://gihub.com/byu-oit/oas-ts"
},
"keywords": [
"oas",
"openapi",
"typescript",
"types",
"swagger"
],
"author": "Spencer Tuft <[email protected]>",
"license": "Apache-2.0",
"files": [
"openapi.d.ts",
"swagger.d.ts"
],
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"typescript": "^4.0.2"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
}
}