-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
129 lines (129 loc) · 3.08 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "jira-miner",
"version": "5.0.0-beta.4",
"description": "An utility for advanced queryies on top of JIRA",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./*": "./dist/*.js"
},
"main": "./dist/index.mjs",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"bin": {
"jira-miner": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kpiwko/jira-miner.git"
},
"keywords": [
"jira",
"data",
"mining"
],
"author": "Karel Piwko <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kpiwko/jira-miner/issues"
},
"homepage": "https://github.com/kpiwko/jira-miner#readme",
"dependencies": {
"@types/blue-tape": "^0.1.32",
"@types/cli-table": "^0.3.0",
"@types/common-tags": "^1.8.0",
"@types/jira-client": "^7.1.1",
"@types/jsonfile": "^6.0.0",
"@types/lokijs": "^1.5.2",
"@types/node": "^16.11.14",
"@types/prettyjson": "^0.0.30",
"@types/request-promise": "^4.1.47",
"@types/request-promise-native": "^1.0.16",
"@types/string-natural-compare": "^3.0.0",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.7",
"cli-table": "^0.3.5",
"common-tags": "^1.4.0",
"date-fns": "^2.19.0",
"jira-client": "^8.0.0",
"json2csv": "^5.0.6",
"jsonfile": "^6.1.0",
"lokijs": "^1.5.11",
"p-limit": "^3.1.0",
"prettyjson": "^1.2.1",
"promise-request-retry": "^1.0.1",
"promise-retry": "^2.0.1",
"request": "^2.78.0",
"request-promise": "^4.2.6",
"striptags": "^3.2.0",
"tmp": "^0.2.1",
"winston": "^3.3.3",
"yargs": "^17.3.0",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@tsconfig/node16": "^1.0.2",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.6",
"@typescript-eslint/parser": "^5.40.1",
"ava": "^3.15.0",
"blue-tape": "^1.0.0",
"c8": "^7.11.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"sinon": "^12.0.1",
"source-map-support": "^0.5.19",
"string-natural-compare": "^3.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "npm exec -- tsc",
"lint": "npm exec -- eslint '*/**/*.{js,ts}' --fix",
"test": "npm exec -- ava -v src/tests/**/*.ts src/tests/*.ts",
"prepublishOnly": "npm run build",
"coverage": "npm exec -- c8 npm run test"
},
"engines": {
"node": ">= 16.0.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
},
"c8": {
"include": [
"src/**/*.ts",
"src/*.ts"
],
"exclude": [
"src/tests/**/*.ts",
"src/tests/*.ts"
],
"reporter": [
"lcov",
"html",
"text"
]
}
}