-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
71 lines (71 loc) · 2.08 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": "@hubspot/api-client",
"version": "12.0.1",
"description": "NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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": "tslint -p tsconfig.json && 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": {
"bottleneck": "^2.19.5",
"es6-promise": "^4.2.4",
"form-data": "^2.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.6.0",
"@types/node-fetch": "^2.5.7",
"url-parse": "^1.4.3"
},
"devDependencies": {
"@types/jasmine": "^3.6.2",
"@types/lodash.get": "^4.4.7",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^12.12.21",
"@types/url-parse": "1.4.4",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-arrow": "^1.1.6",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "4.0.1",
"jasmine": "^3.6.3",
"prettier": "^2.8.0",
"replace": "^1.2.0",
"ts-node": "^10.8.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3"
},
"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"
}