-
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.84 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.84 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
{
"$schema": "https://json.schemastore.org/package",
"name": "lvmh-careers-cli",
"version": "1.0.3",
"description": "A simple CLI made with Commander and Enquirer to access and store offers from LVMH Careers platform.",
"type": "module",
"main": "dist/index.js",
"bin": {
"lvmh-careers": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/moha-tah/lvmh-careers-cli"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"test:watch": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --watch",
"test:coverage": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"files": [
"dist"
],
"keywords": [
"cli",
"careers",
"lvmh",
"jobs",
"terminal"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"clipboardy": "^5.0.0",
"commander": "^14.0.1",
"conf": "^15.0.0",
"enquirer": "^2.4.1",
"fast-xml-parser": "^5.2.5",
"fs": "^0.0.1-security",
"open": "^10.2.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.6.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.4",
"tsx": "^4.20.6"
}
}