-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "@hubspot/api-client",
"version": "13.5.0",
"description": "NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"prettier:check": "prettier --check \"{,**/}*.{js,ts}\"",
"prettier:write": "prettier --write \"{,**/}*.{js,ts}\"",
"lint": "eslint \"{,**/}*.ts\" && npm run prettier:check",
"prepare": "npm run build && npm run version:set",
"version:set": "replace '@VERSION@' $npm_package_version ./lib/src/configuration/version.*"
},
"author": "HubSpot",
"license": "ISC",
"dependencies": {
"@types/node-fetch": "^2.6.13",
"@types/node": "*",
"bottleneck": "^2.19.5",
"es6-promise": "^4.2.4",
"form-data": "^4.0.4",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/jasmine": "^5.1.7",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"jasmine": "^5.7.0",
"prettier": "^3.5.1",
"replace": "^1.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.9.5",
"typescript-eslint": "^8.23.0"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HubSpot/hubspot-api-nodejs.git"
},
"keywords": [
"hubspot",
"nodejs",
"api",
"client",
"sdk",
"library",
"wrapper"
],
"bugs": {
"url": "https://github.com/HubSpot/hubspot-api-nodejs/issues"
},
"homepage": "https://github.com/HubSpot/hubspot-api-nodejs#readme"
}