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
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "time-tracker-cli",
"version": "1.1.2",
"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"
},
"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.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"mocha": "^2.3.4",
"source-map-support": "^0.4.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"configstore": "^1.4.0",
"flat": "^2.0.0",
"moment": "^2.11.2",
"update-notifier": "^0.6.0"
}
}