forked from danibram/time-tracker-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
{
"name": "time-tracker-cli",
"version": "2.0.0",
"description": "Tiny time tracker",
"keywords": [
"time",
"tracker",
"timer",
"cli",
"time log",
"time logger",
"logger"
],
"bin": {
"timer": "./bin/timer"
},
"main": "./lib",
"scripts": {
"build": "node_modules/.bin/babel -s -d lib src",
"dev": "npm run build -- -w",
"test": "mocha -R spec --require source-map-support/register lib/__test__/*.spec.js ",
"test:dev": "npm run test -- -w",
"postinstall": "timer --updateDB"
},
"repository": {
"type": "git",
"url": "https://github.com/danibram/time-tracker-cli"
},
"author": "Daniel Biedma <info@dbr.io>",
"license": "ISC",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.22.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"chalk": "^1.1.3",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"configstore": "^2.1.0",
"flat": "^2.0.0",
"inquirer": "^3.0.1",
"moment": "^2.11.2",
"omelette": "^0.3.1",
"update-notifier": "^1.0.3"
}
}