-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "harvest-cli",
"version": "0.1.12",
"private": false,
"description": "Unofficial Harvest CLI focused on time-tracking creation",
"keywords": [
"harvest",
"oclif",
"time-tracking"
],
"homepage": "https://github.com/lucasconstantino/harvest-cli",
"bugs": "https://github.com/lucasconstantino/harvest-cli/issues",
"repository": "lucasconstantino/harvest-cli",
"license": "MIT",
"author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>",
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/lib"
],
"main": "lib/index.js",
"bin": {
"harvest": "./bin/run"
},
"scripts": {
"codecov": "yarn test && codecov",
"compile": "babel src -d lib --ignore src/**/*.test.js",
"lint": "eslint src",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"precommit": "lint-staged",
"prepush": "yarn qa",
"prepublish": "yarn qa && yarn compile",
"qa": "yarn test && yarn lint",
"release": "yarn compile && standard-version",
"test": "jest src",
"version": "oclif-dev readme"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1.12.12",
"@oclif/plugin-help": "^2.1.6",
"chalk": "^2.4.2",
"cli-ux": "^5.2.1",
"emojic": "^1.1.15",
"enquirer": "^2.3.0",
"figures": "^2.0.0",
"harvest": "^2.2.5",
"ramda": "^0.26.1",
"shell-exec": "^1.0.2",
"signale": "^1.4.0",
"simple-git": "^1.110.0",
"tmp": "^0.1.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.3.1",
"@oclif/dev-cli": "^1",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-rewire": "^1.2.0",
"codecov": "^3.3.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"mocked-env": "^1.2.4",
"nock": "^10.0.6",
"prettier-eslint-cli": "^4.7.1",
"rewire": "^4.0.1",
"sort-package-json": "^1.19.0",
"standard-version": "^5.0.1"
},
"engines": {
"node": ">=8.0.0"
},
"oclif": {
"commands": "./lib/commands",
"bin": "harvest",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"log": {
"description": "manage time-tracking logs"
}
}
}
}