-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.26 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
72
73
74
75
76
77
78
79
80
{
"name": "@zalko/linkedin-parser",
"version": "1.0.2",
"description": "LinkedIn resume PDF parser with comprehensive Jest testing and test data generation",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"author": {
"name": "Arkady Zalkowitsch",
"email": "arkady@zalko.com"
},
"license": "MIT",
"keywords": [
"pdf",
"parser",
"resume",
"linkedin",
"jest",
"testing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zalkowitsch/linkedin-parser.git"
},
"homepage": "https://github.com/zalkowitsch/linkedin-parser#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run clean && tsc && npm run build:bundle && npm run build:minify",
"build:bundle": "rollup -c",
"build:minify": "node esbuild.config.js",
"build:dev": "tsc",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist coverage",
"size:check": "ls -lh dist/index.* | awk '{print $5, $9}'",
"generate:pdf": "npx tsx utils/generate-pdf.ts",
"quality:check": "npm run lint && npm run format:check && npm run test:coverage",
"prepublishOnly": "npm run quality:check && npm run build"
},
"files": [
"dist"
],
"dependencies": {
"pdfjs-dist": "^5.4.394"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"prettier": "^3.7.1",
"rollup": "^4.53.3",
"terser": "^5.44.1",
"ts-jest": "^29.4.5",
"tslib": "^2.8.1",
"typescript": "^5.3.3"
},
"type": "module"
}