-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "time-tracker-cli",
"version": "2.5.0",
"description": "Tiny time tracker",
"keywords": [
"time",
"tracker",
"timer",
"cli",
"time log",
"time logger",
"logger"
],
"bin": {
"timer": "./bin/timer"
},
"main": "./lib/exports",
"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"
},
"author": "Daniel Biedma <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"prettier": "^1.10.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"cli-table2": "^0.2.0",
"colors": "^1.1.2",
"commander": "^2.14.1",
"configstore": "^3.1.1",
"flat": "^4.0.0",
"inquirer": "^3.3.0",
"moment": "^2.20.1",
"omelette": "^0.4.5",
"update-notifier": "^2.3.0"
}
}