-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
71 lines (71 loc) · 1.96 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
{
"name": "actionableagileimporttool",
"version": "1.1.0",
"description": "Tool to extract data from JIRA into a format understood by the ActionableAgile metrics tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc:w": "tsc -w",
"tsc:version": "tsc --version",
"build": "tsc",
"jira-extract": "node dist/cli",
"start": "npm run tsc:w",
"lint": "tslint ./src/**/*.ts",
"outDir": "dist/",
"build-bundle": "npm run build && browserify dist/cli.js --node --standalone rawjs > jira-to-analytics.js",
"build-executable:windows": "nexe -i dist/cli.js -o jira-to-analytics.exe --flags",
"build-executable:mac": "nexe -i dist/cli.js -o jira-to-analytics.mac --flags",
"build-release": "npm run build-bundle",
"test": "mocha --opts mocha.opts",
"test:watch": "mocha --opts mocha.opts --watch",
"prepublish": "npm run build"
},
"keywords": [
"typescript",
"javascript",
"agile",
"actionableagile",
"scrum",
"kanban",
"jira",
"extract",
"nodejs",
"node",
"yawml",
"tool",
"metrics"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/mocha": "^2.2.32",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"nock": "^8.0.0",
"try-thread-sleep": "^1.0.0",
"ts-node": "^1.6.0"
},
"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",
"inquirer": "^1.2.2",
"js-yaml": "^3.6.1",
"moment": "^2.15.1",
"progress": "^1.1.8",
"request": "^2.75.0",
"typescript": "^2.2.0-dev.20161123",
"yargs": "^4.7.1"
}
}