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 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@neuralegion/postman2har",
"version": "0.0.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/NeuraLegion/postman2har.git"
},
"author": {
"name": "Artem Derevnjuk",
"email": "artem.derevnjuk@neuralegion.com"
},
"files": [
"dist/**",
"schemas/**"
],
"license": "MIT",
"keywords": [
"postman",
"har",
"api",
"har",
"json"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/NeuraLegion/postman2har/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"lint": "eslint -c .eslintrc --ext .ts src",
"format": "prettier --check src",
"format:write": "prettier --write src",
"test": "mocha -r ts-node/register -r tsconfig-paths/register tests/**/*.spec.ts",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/NeuraLegion/postman2har#readme",
"dependencies": {
"ajv": "^6.12.6",
"faker": "^5.1.0",
"mime-types": "^2.1.27",
"semver": "^7.3.4",
"tslib": "~2.0.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/faker": "^5.1.5",
"@types/har-format": "^1.2.5",
"@types/mime-types": "^2.1.0",
"@types/mocha": "~8.0.4",
"@types/node": "~14.14.10",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "~4.2.0",
"chai-as-promised": "^7.1.1",
"debug": "^4.3.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"husky": "^4.3.4",
"lint-staged": "^10.5.3",
"mocha": "~8.2.1",
"nyc": "~15.1.0",
"prettier": "~2.2.1",
"semantic-release": "^17.4.2",
"ts-node": "~9.1.0",
"typescript": "^4.1.2"
}
}