forked from MSWagner/node-hubspot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "allaboutapps-legacy-hubspot",
"version": "2.5.1",
"description": "A legacy node wrapper for the HubSpot API",
"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",
"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 15000",
"eslint": "eslint . --fix",
"prettier": "prettier --write {lib,test}/**/*.{js,ts}",
"watch-test": "mocha --recursive test/ --timeout 15000 --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/allaboutapps/hubspot-aaa"
},
"keywords": [
"hubspot"
],
"license": "MIT",
"dependencies": {
"bottleneck": "^2.3.0",
"debug": "^4.1.0",
"lodash": "^4.17.5",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/node": "^10.5.1",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "^5.0.1",
"nock": "^10.0.3",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
}
}