This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "hubspot-api",
"version": "2.17.3",
"description": "HubSpot API Wrapper",
"keywords": [
"hubspot",
"hubspot-api"
],
"repository": "github:HubSpotWebTeam/hs-node-api",
"main": "dist/bundle.min.js",
"types": "./types/main.d.ts",
"scripts": {
"build": "rollup -c",
"test": "mocha -r esm",
"test:watch": "npm run build && mocha --watch -r esm",
"generate-docs": "./node_modules/.bin/jsdoc -R ./README.md -c ./jsconf.json -r ./src -d ./docs/"
},
"author": "Stephen McElhinney",
"license": "ISC",
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@pixi/jsdoc-template": "^2.6.0",
"chai": "^4.1.2",
"del": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"esm": "^3.2.25",
"ink-docstrap": "^1.3.0",
"joi": "^13.1.2",
"jsdoc": "^3.6.6",
"mocha": "^5.0.5",
"rimraf": "^2.7.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"axios": "^0.26.1",
"debug": "^3.2.7",
"interpolate": "^0.1.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"node-uuid": "^1.4.8"
}
}