-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "quickbooks-node-promise",
"version": "3.3.14",
"description": "Connect to QuickBooks Online API with OAuth 2 with typescript on entities",
"author": "Peter Brink",
"license": "ISC",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"main": "dist/index.js",
"keywords": [
"quickbooks",
"node",
"promise",
"OAuth2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pbrink231/quickbooks-node-promise.git"
},
"dependencies": {
"csrf": "^3.1.0",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2.7.0",
"qs": "^6.11.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/node-fetch": "^2.6.6",
"@types/uuid": "^9.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsdoc-to-markdown": "^8.0.0",
"puppeteer": "^21.3.8",
"ts-migrate": "^0.1.35",
"ts-node": "^10.9.1"
},
"scripts": {
"dev": "ts-node example/server.ts",
"scrape": "ts-node quickbooks-type-scrape/index.ts",
"scrape:process": "ts-node quickbooks-type-scrape/index.ts process",
"prepublish": "tsc",
"prepare": "tsc",
"pushnpm": "npm run prepublish && npm publish"
}
}