-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
71
{
"name": "mdr-cli",
"version": "1.5.2",
"description": "cli to interact with the mijndomeinreseller api",
"keywords": [
"cli",
"terminal",
"console",
"mdr",
"mijndomeinreseller",
"util",
"utility",
"sysadmin",
"tools"
],
"main": "./dist/src/cli.js",
"license": "MIT",
"author": {
"name": "Pepijn van den Broek",
"email": "pepijn@vdbroek.dev",
"url": "https://vdbroek.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/future-id/mdr-cli.git"
},
"engines": {
"node": ">=14"
},
"bin": {
"mdr": "./dist/src/cli.js"
},
"scripts": {
"setup": "yarn && yarn build && yarn link",
"test": "cross-env NODE_ENV=development ts-node ./src/cli.ts",
"mdr": "cross-env NODE_ENV=development ts-node ./src/cli.ts",
"prebuild": "rm -rf dist",
"build": "tsc && chmod +x ./dist/src/cli.js",
"build:test": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "eslint \"src/**/*.{ts,js}\" --fix",
"clean": "rm -rf ./node_modules ./package-lock.json ./yarn.lock",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"axios": "^0.21.1",
"boxen": "^5.0.1",
"chalk": "^4.1.0",
"clime": "^0.5.14",
"is-base64": "^1.1.0",
"ora": "^5.4.0",
"semver": "^7.3.5",
"styled-cli-table": "^1.3.0",
"update-check": "^1.5.4",
"urlcat": "^2.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/is-base64": "^1.1.0",
"@types/node": "^14.14.37",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"gts": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}