-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
83 lines (83 loc) · 2.28 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
77
78
79
80
81
82
83
{
"name": "linkedin-private-api",
"version": "1.1.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Eilon Mor",
"license": "MIT",
"keywords": [
"linkedin-nodejs-api",
"linkedin-api",
"linked-private-api",
"linked-unofficial-api",
"linkedin-web-api"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/eilonmore/linkedin-private-api.git"
},
"homepage": "https://github.com/eilonmore/linkedin-private-api",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -p tsconfig.json -c tslint.json",
"typecheck": "eslint --ext .ts --ext .js src",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"test": "NODE_ENV=test jest",
"test:coverage": "yarn test -- --coverage",
"prepublish": "yarn docs && yarn build",
"prepare": "yarn docs && yarn build",
"docs": "rimraf docs && typedoc --plugin typedoc-plugin-markdown --out docs src"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"axios": "^0.21.0",
"cookie": "^0.5.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.15",
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/config": "^0.0.41",
"@types/cookie": "^0.5.1",
"@types/faker": "^5.1.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.161",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-eslint": "^10.0.3",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"faked": "^2.1.0",
"faker": "^5.1.0",
"husky": "^8.0.1",
"intermock": "^0.2.2",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"rimraf": "^3.0.2",
"testdouble": "^3.16.1",
"testdouble-jest": "^2.0.0",
"ts-jest": "^26.4.1",
"typedoc": "~0.19.2",
"typedoc-plugin-markdown": "~3.1.1",
"typescript": "^4.0.2"
}
}