This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 1.9 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@neuralegion/oas2har",
"version": "0.0.0",
"description": "Generate HAR objects from OAS",
"files": [
"src"
],
"main": "./src/index.js",
"dependencies": {
"@neuralegion/openapi-sampler": "^0.7.2",
"@types/har-format": "^1.2.5",
"@types/swagger-schema-official": "^2.0.21",
"ajv": "^6.12.6",
"js-yaml": "^3.14.0",
"jstoxml": "^2.0.2",
"openapi-schemas": "^2.0.4",
"qs": "^6.9.4",
"semver": "^7.3.4",
"url-template": "^2.0.8"
},
"typings": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/oas2har.git"
},
"publishConfig": {
"access": "public"
},
"private": false,
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/NeuraLegion/oas2har/issues"
},
"homepage": "https://github.com/NeuraLegion/oas2har#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.15.0",
"esprima": "^4.0.1",
"husky": "^4.3.4",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"semantic-release": "^17.3.0"
},
"scripts": {
"lint": "eslint -c .eslintrc src tests",
"format": "prettier --check src tests",
"format:write": "prettier --write src tests",
"test": "jest",
"semantic-release": "semantic-release"
},
"keywords": [
"swagger",
"oas",
"yml",
"yaml",
"har",
"json"
],
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}