-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "jira-activity",
"version": "1.7.0",
"description": "This tool parses your jira activity stream and returns a list of your workitems grouped by day.",
"main": "index.ts",
"bin": {
"jira-activity": "./dist/index.js"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"release": "npm run build && npm-github-release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ruettenm/jira-activity"
},
"engines": {
"npm": ">4.0",
"yarn": ">1.6.0",
"node": ">=8.11.3"
},
"keywords": [
"jira",
"activity-stream",
"activity"
],
"author": "Matthias Rütten <[email protected]>",
"license": "MIT",
"dependencies": {
"cli-spinner": "0.2.8",
"commander": "^2.16.0",
"emoji-strip": "^1.0.1",
"inquirer": "^6.0.0",
"moment": "^2.22.2",
"settings-store": "1.4.0",
"superagent": "^3.8.3",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^0.0.42",
"@types/moment": "^2.13.0",
"@types/node": "8.9",
"@types/superagent": "^3.8.2",
"npm-github-release": "^0.12.0",
"ts-node": "6",
"typescript": "^2.9.2"
}
}