-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "richard-webb-cli",
"version": "0.4.2",
"description": "A CLI tool with documentation to deliver information on Richard Webb, an Engineering Leader looking for a job in Berlin.",
"repository": {
"type": "git",
"url": "https://github.com/jaeger2305/richard-webb-cli.git"
},
"bin": {
"richard-webb-cli": "bin/richard-webb-cli",
"@rwebb2305/cli": "bin/richard-webb-cli",
"rwc": "bin/richard-webb-cli"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"eslint": "eslint **/*.js",
"eslint:fix": "eslint --fix **/*.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest && npm run prettier && npm run eslint",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"cli",
"vuepress",
"documentation",
"cv",
"resume"
],
"files": [
"bin",
"src"
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"author": "Richard Webb",
"license": "CC-BY-ND-4.0",
"dependencies": {
"chalk": "^3.0.0",
"figlet": "^1.5.0",
"mock-argv": "^1.1.15",
"open": "^7.4.2",
"prompts": "^2.4.1",
"yargs": "^15.4.1"
},
"type": "module",
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^23.20.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"vitepress": "^1.0.0-rc.44",
"vue": "^3.4.20"
},
"engines": {
"node": ">=18.19.1"
}
}