This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
69 lines (69 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
{
"name": "hubspot",
"version": "2.3.14",
"description": "A node wrapper for the HubSpot API",
"engines": {
"node": ">=10.0.0"
},
"main": "index.js",
"scripts": {
"build": "npm install && npm test && npm run lint",
"test": "cross-env NODE_ENV=test npm run lint && npm run mocha && npm run tsc",
"test-debug": "cross-env NODE_ENV=test npm run lint && npm run mocha-debug && npm run tsc",
"coverage": "nyc --reporter=lcov mocha --timeout=10000",
"lint": "npm run prettier && npm run eslint",
"tsc": "tsc",
"ts-node": "ts-node test/typescript/hubspot.ts",
"mocha": "mocha --recursive test/ --timeout 60000",
"mocha-debug": "mocha --recursive --inspect-brk=9229 test/ --timeout 15000",
"eslint": "eslint . --fix",
"prettier": "prettier --write {lib,test}/**/*.{js,ts}",
"watch-test": "mocha --recursive test/ --timeout 15000 --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/MadKudu/node-hubspot.git"
},
"keywords": [
"hubspot"
],
"author": {
"name": "Brian Falk",
"url": "https://github.com/brainflake/"
},
"license": "MIT",
"dependencies": {
"bottleneck": "^2.19.5",
"debug": "^4.2.0",
"form-data": "^3.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"chai": "^4.3.6",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "4.0.1",
"mocha": "^8.4.0",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}