-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 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
{
"name": "harvest-overtime",
"version": "3.0.0",
"description": "Track the overtime!",
"keywords": [
"harvest",
"overtime",
"report",
"csv",
"export",
"convert",
"parse"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flandrade/harvest-overtime.git"
},
"main": "lib/harvest-overtime.js",
"types": "lib/harvest-overtime.d.ts",
"bin": {
"harvest-overtime": "./lib/harvest-overtime.js"
},
"scripts": {
"compile": "tsc",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prestart": "npm run compile",
"pack-publish": "npm run compile && npm publish",
"start": "node lib/harvest-overtime.js",
"test": "mocha --require ts-node/register test/**/*.test.ts"
},
"author": "Fernanda Andrade",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.2",
"commander": "^9.3.0",
"csv": "^6.1.0",
"csv-generate": "^4.1.0",
"csv-parse": "^5.1.0",
"date-fns": "^2.28.0",
"json2csv": "^5.0.7",
"path": "^0.12.7",
"ramda": "^0.28.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.1",
"@types/json2csv": "^5.0.3",
"@types/mocha": "^9.1.1",
"@types/node": "^15.14.9",
"@types/ramda": "^0.28.14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"eslint": "^8.17.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}