forked from altayer-digital/toggl-tempo-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·67 lines (67 loc) · 1.69 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
{
"name": "coponentk-toggl-tempo-sync",
"description": "A fork of a sync extension between Toggl and Tempo",
"version": "2.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Konstantin Kiritsenko",
"email": "k@componentk.com"
},
"scripts": {
"inspect": "node index.js --inspect index.js --dryRun",
"break": "node index.js --inspect-brk=0.0.0.0 inedx.js",
"start": "node index.js",
"test": "./node_modules/.bin/mocha --recursive test/",
"lint": "./node_modules/.bin/eslint -c .eslintrc index.js helpers/ test/",
"cover": "./node_modules/.bin/nyc npm test",
"coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"bin": {
"toggl": "./index.js"
},
"engines": {
"node": "21.2"
},
"repository": {
"type": "git",
"url": "https://github.com/componentK/toggl-tempo-sync"
},
"dependencies": {
"axios": "1.7.7",
"axios-rate-limit": "^1.4.0",
"fs-extra": "^9.1.0",
"is-number": "^7.0.0",
"js-yaml": "^4.0.0",
"lodash.get": "^4.4.2",
"mkdirp-promise": "^5.0.1",
"moment": "2.29.4",
"nconf": "0.11.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"coveralls": "3.1.1",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "10.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"reporter": [
"html",
"text-summary",
"lcovonly"
]
}
}