-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "toggl-track",
"version": "0.8.0",
"description": "A TypeScript client for the Toogl Track API (v9)",
"keywords": [
"toggl",
"toggl track",
"time tracking",
"toggl api",
"typescript"
],
"author": "Gary Tou <[email protected]> (https://garytou.com)",
"license": "MIT",
"homepage": "https://github.com/garyhtou/toggl-track",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/garyhtou/toggl-track/issues"
},
"repository": {
"type": "giit",
"url": "https://github.com/garyhtou/toggl-track.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn run build",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"prettier": "@garyhtou/prettier-config",
"devDependencies": {
"@garyhtou/prettier-config": "^1.0.1",
"@types/node": "^17.0.42",
"prettier": "^2.6.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3"
},
"dependencies": {
"axios": "^0.27.2"
}
}