-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.72 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
68
69
70
71
72
73
{
"name": "@comake/openapi-operation-executor",
"version": "0.13.0",
"description": "Sends web requests according to OpenApi specs",
"keywords": [
"openapi",
"open-api",
"swagger",
"json",
"axios",
"node",
"request",
"api",
"js",
"typescript",
"schema"
],
"repository": {
"type": "git",
"url": "https://github.com/comake/openapi-operation-executor.git"
},
"bugs": {
"url": "https://github.com/comake/openapi-operation-executor/issues"
},
"homepage": "https://github.com/comake/openapi-operation-executor#readme",
"license": "MIT",
"author": {
"name": "Adler Faulkner",
"email": "[email protected]"
},
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0",
"test": "npm run test:ts && npm run jest",
"test:ts": "tsc -p test --noEmit",
"prepare": "npm run build"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"axios": "^0.27.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-es": "^3.26.13",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-node": "^10.8.0",
"typescript": "^4.5.4"
}
}