-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 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": "linkedin-api-client",
"version": "0.3.0",
"description": "Official JavaScript client library for LinkedIn APIs",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"test": "jest --detectOpenHandles",
"test-debug-log": "DEBUG=nock.* jest --detectOpenHandles",
"@comment test": "The detectOpenHandles workaround is due to this issue: https://github.com/facebook/jest/issues/10577",
"format": "prettier --write '{lib,examples,tests}/**/*.ts'",
"lint": "eslint {lib,examples,tests}/**/*.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc --project tsconfig.build.json",
"doc": "typedoc",
"prepare": "husky install",
"prepublishOnly": "npm ci && npm run test && npm run build",
"release": "dotenv release-it"
},
"author": "LinkedIn",
"repository": {
"type": "git",
"url": "https://github.com/linkedin-developers/linkedin-api-js-client.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.1.3",
"lodash": "^4.17.21",
"qs": "^6.11.0"
},
"lint-staged": {
"{lib,tests}/**/*.ts": [
"eslint {lib,examples,tests}/**/*.ts --fix",
"prettier --write '{lib,examples,tests}/**/*.ts'"
]
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"babel-jest": "^29.3.1",
"dotenv-cli": "^7.0.0",
"eslint": "^8.29.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^11.2.5",
"nock": "^13.2.9",
"prettier": "^2.8.1",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"typedoc": "^0.23.21",
"typescript": "^4.9.4"
}
}