-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.65 KB
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
{
"name": "@eficode/tscli",
"version": "0.0.5",
"author": "Marko Klemetti",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eficode/tscli"
},
"keywords": [
"Timesheets",
"Eficode"
],
"main": "lib/index.js",
"bin": {
"tscli": "lib/cli.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "husky install && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"build": "tsc",
"release": "./node_modules/.bin/standard-version && git push --follow-tags",
"test": "jest",
"format": "prettier --write **/*.ts",
"lint": "tslint -p tsconfig.json",
"typecheck": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest/presets/default",
"testMatch": [
"**/**/*.test.ts"
],
"setupFiles": [
"./test/setup.ts"
]
},
"dependencies": {
"chrome-cookies-secure": "^1.3.2",
"console-table-printer": "^2.10.0",
"dayjs": "^1.10.7",
"jsonpath": "^1.1.1",
"node-fetch": "^2.6.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/jsonpath": "^0.2.0",
"@types/node": "^16.11.33",
"@types/node-fetch": "^2.6.1",
"@types/yargs": "^17.0.7",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,ts,json,md,html,yml,yaml}": "prettier --write",
"*.ts": "tslint -p tsconfig.json"
}
}