-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
75 lines (75 loc) · 1.4 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
75
{
"name": "toggl-cli",
"version": "0.2.0",
"description": "Manage your Toggl.com time entries from the familiarity of the nearby CLI.",
"repository": {
"type": "git",
"url": "git@github.com:meeDamian/toggl-cli.git"
},
"main": "./src/main.js",
"preferGlobal": true,
"bin": {
"toggl": "./src/index.js"
},
"scripts": {
"start": "./src/index.js",
"test": "xo && isparta cover _mocha"
},
"keywords": [
"toggl",
"cli",
"utility",
"tool",
"time",
"tracking"
],
"author": "Damian Mee <mee.damian@gmail.com> (https://meedamian.com)",
"license": "MIT",
"engines": {
"node": ">=5.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^0.30.0",
"log-update": "^1.0.2",
"mee": "^0.11.3",
"minimist": "^1.2.0",
"open": "0.0.5",
"request": "^2.75.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-spies": "^0.7.1",
"codecov": "^1.0.1",
"coveralls": "^2.11.14",
"isparta": "^4.0.0",
"mocha": "^3.0.2",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"mocha",
"es6"
],
"rules": {
"max-params": [
"warn",
{
"max": 5
}
]
},
"ignores": [
"src/index.js"
]
},
"babel": {
"presets": [
"es2015"
]
}
}