forked from eilonmore/linkedin-private-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "linkedin-private-api",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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=development jest",
"prepublish": "yarn docs && yarn build",
"docs": "rimraf docs && typedoc --plugin typedoc-plugin-markdown --out docs src"
},
"author": "Eilon Mor",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"axios": "^0.19.0",
"cookie": "^0.4.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.15",
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/config": "^0.0.36",
"@types/cookie": "^0.4.0",
"@types/faker": "^5.1.2",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.1",
"@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": "^14.2.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"faked": "^2.1.0",
"faker": "^5.1.0",
"husky": "^4.3.0",
"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.0.7",
"typescript": "^4.0.2"
}
}