-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.68 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
{
"author": "Ulises Santana @ulisesantana",
"bin": {
"track": "./bin/run.js"
},
"bugs": "https://github.com/ulisesantana/track/issues",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@inquirer/select": "^1.3.1",
"@oclif/core": "^3",
"@oclif/plugin-autocomplete": "^3.0.3",
"@oclif/plugin-help": "^5",
"@oclif/plugin-not-found": "^3.0.6",
"axios": "^1.6.2",
"fs-extra": "^11.2.0"
},
"description": "A CLI for Toggl Track",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^9.0.0",
"@types/node": "^18",
"@types/proxyquire": "^1.3.31",
"axios-mock-adapter": "^1.22.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.53.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"oclif": "^3.17.2",
"proxyquire": "^2.1.3",
"shx": "^0.3.3",
"sinon": "17.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ulisesantana/track",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@ulisesantana/track",
"oclif": {
"bin": "track",
"commands": "./dist/commands",
"dirname": "track",
"hooks": {
"init": "./dist/hooks/init/init_config"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
],
"topicSeparator": " ",
"topics": {
"set": {
"description": "Set your config individually."
}
}
},
"packageManager": "[email protected]",
"private": false,
"repository": "ulisesantana/track",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"create:use-case": "./scripts/templates/generate-use-case.mjs && git add {src,test}/application/cases",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"postversion": "npm publish --access public",
"prepack": "npm run build && oclif manifest && oclif readme",
"prepare": "npm run build",
"test": "tsc && nyc mocha --forbid-only --serial --bail \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md && git push --tags"
},
"types": "dist/index.d.ts",
"version": "1.0.7"
}