-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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": "jira-data-extractor",
"version": "2.1.7",
"description": "Tool to extract data from JIRA into Excel or csv. It automatically includes basic data and flow status/stage start dates and durations. Therefore cycle time and lead time is easily calculated.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"__type": "module",
"scripts": {
"build": "tsc",
"deploy": "npm run build && browserify dist/cli.js --node --standalone rawjs > run.js",
"extract": "node --insecure-http-parser dist/cli",
"tsc:w": "tsc -w",
"tsc:version": "tsc --version",
"start": "npm run tsc:w",
"lint": "tslint ./src/**/*.ts",
"outDir": "dist/"
},
"keywords": [
"jira",
"extract",
"analytics",
"typescript",
"javascript",
"agile",
"scrum",
"kanban",
"nodejs",
"node",
"tool",
"metrics"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@open-wc/building-rollup": "^2.2.3",
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/mocha": "^2.2.32",
"@types/node-fetch": "^2.6.4",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"deepmerge": "^4.3.1",
"mocha": "^10.2.0",
"nock": "^8.0.0",
"rimraf": "^5.0.1",
"try-thread-sleep": "^1.0.0",
"ts-node": "^1.6.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/core-js": "^0.9.34",
"@types/inquirer": "0.0.29",
"@types/isomorphic-fetch": "0.0.31",
"@types/js-yaml": "^3.5.28",
"@types/node": "^6.0.45",
"@types/progress": "^1.1.28",
"@types/ramda": "0.0.2",
"@types/request": "0.0.31",
"@types/yargs": "0.0.33",
"chalk": "^1.1.3",
"core-js": "^2.4.0",
"fs": "^0.0.1-security",
"inquirer": "^1.2.2",
"js-yaml": "^3.6.1",
"moment": "^2.15.1",
"node-fetch": "^2.6.11",
"progress": "^1.1.8",
"request": "^2.75.0",
"thread-sleep": "^2.2.0",
"tsify": "^5.0.4",
"yargs": "^17.7.2"
}
}