-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.99 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
{
"name": "@nfantone/cpho",
"version": "0.0.0-development",
"description": "A simple CLI tool to upload E-Workers Allowance timesheets to ContractingPlus",
"keywords": [
"tool",
"cli",
"allowance",
"contractingplus",
"contractor",
"e-worker",
"homeoffice",
"timesheet"
],
"repository": {
"type": "git",
"url": "https://github.com/nfantone/cpho.git"
},
"license": "MIT",
"author": "Nicolás Fantone <me@nfantone.dev> (https://github.com/nfantone)",
"main": "index.js",
"bin": {
"cpho": "bin/cpho.js"
},
"files": [
"src/",
"bin/",
"index.js"
],
"scripts": {
"test": "jest --env=node --colors --bail --detectOpenHandles --errorOnDeprecated --noStackTrace --passWithNoTests src/"
},
"dependencies": {
"abort-controller": "^3.0.0",
"chalk": "^4.1.0",
"cookie": "^0.4.1",
"date-fns": "^2.16.1",
"fecha": "^4.2.0",
"is-redirect": "^1.0.0",
"log-symbols": "^4.0.0",
"log-update": "^4.0.0",
"ms": "^2.1.3",
"node-fetch": "^2.6.1",
"prompt": "^1.0.0",
"ramda": "^0.27.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cookie": "^0.4.0",
"@types/jest": "^26.0.19",
"@types/ms": "^0.7.31",
"@types/node-fetch": "^2.5.7",
"@types/ramda": "^0.27.34",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}