-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "timely-cli",
"version": "0.1.0",
"description": "A Timely CLI tool (https://timelyapp.com/) written in NodeJS",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src\" --",
"build": "babel src --out-dir dist",
"build:watch": "babel --watch src --out-dir dist",
"start": "npm run dev --",
"lint": "eslint src",
"test": "npm run lint"
},
"homepage": "https://github.com/ItsWendell/timely-cli",
"repository": {
"type": "git",
"url": "https://github.com/ItsWendell/timely-cli.git"
},
"keywords": [
"time",
"timely",
"time tracking",
"timelyapp",
"timely-cli"
],
"bugs": {
"url": "https://github.com/ItsWendell/timely-cli/issues"
},
"bin": {
"git-cz": "./bin/timely-cli"
},
"author": "Wendell Misiedjan <wendell@digispark.nl> (https://github.com/ItsWendell)",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"chrono-node": "^1.3.5",
"cli-table": "^0.3.1",
"dotenv": "^6.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"moment": "^2.22.2",
"node-persist": "^3.0.1",
"simple-oauth2": "^2.2.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"babel-cli": "^6.26",
"babel-core": "^6.26",
"babel-eslint": "^9.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7",
"babel-preset-stage-0": "^6.24",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.18"
},
"babel": {
"presets": [
"env",
"stage-0"
]
}
}