forked from mikerourke/toggl-to-clockify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "toggl-to-clockify",
"version": "0.1.11",
"description": "Transfer Toggl time entries to Clockify.me.",
"repository": "https://github.com/mikerourke/toggl-to-clockify.git",
"author": "Mike Rourke <[email protected]>",
"keywords": [
"toggl",
"clockify",
"transfer"
],
"license": "MIT",
"private": false,
"engines": {
"node": ">=10.3"
},
"scripts": {
"precompile": "rimraf ./lib",
"compile": "tsc --project tsconfig.prod.json",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"prettier": "prettier --write \"src/**/*.ts\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "jest --coverageReporters=lcov --config jest.config.json"
},
"bin": {
"toggl-to-clockify": "./bin/toggl-to-clockify.js"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE.md"
],
"dependencies": {
"chalk": "^2.4.1",
"date-fns": "^1.29.0",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"node-fetch": "^2.2.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"@types/node-fetch": "^2.1.2",
"conventional-changelog-cli": "^2.0.5",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"mock-fs": "^4.7.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb-base": "^0.2.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "all"
}
}