forked from kriskbx/gitlab-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 1.9 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
{
"name": "gitlab-time-tracker",
"version": "1.7.39",
"description": "A command line interface for GitLabs time tracking feature.",
"bugs": {
"url": "https://github.com/kriskbx/gitlab-time-tracker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kriskbx/gitlab-time-tracker.git"
},
"main": "src/gtt.js",
"scripts": {
"test": "NODE_ENV=test mocha 'spec/**/*.spec.js'",
"cover": "istanbul cover _mocha $(find ./spec -name \"*.spec.js\")",
"coveralls": "yarn run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"build": "pkg src/gtt.js -o out/gtt -c package.json"
},
"bin": {
"gtt": "src/gtt.js"
},
"engines": {
"node": ">=6.11"
},
"pkg": {
"scripts": "src/**/*.js",
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
},
"author": "kriskbx",
"license": "GPL-2.0",
"dependencies": {
"app-module-path": "^2.2.0",
"async": "^2.6.1",
"camelcase": "^4.1.0",
"cli-cursor": "^2.1.0",
"cli-table": "^0.3.1",
"colors": "^1.3.1",
"commander": "kriskbx/commander.js",
"csv-string": "^2.3.2",
"find-in-files": "^0.4.0",
"hash-sum": "^1.0.2",
"hashids": "^1.1.1",
"markdown-pdf": "^9.0.0",
"markdown-table": "^1.1.0",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"node-spinner": "^0.0.4",
"open": "^0.0.5",
"progress": "^2.0.0",
"prompt": "^1.0.0",
"read-yaml": "^1.1.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.4",
"shelljs": "^0.8.3",
"tempfile": "^2.0.0",
"throttled-queue": "^1.0.7",
"underscore": "^1.9.1",
"xdg-basedir": "^3.0.0",
"xlsx": "^0.13.5"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^5",
"mocha-lcov-reporter": "^1.3.0",
"pkg": "^4.3.4",
"sinon": "^3.2.1"
}
}