forked from Recursyve/nestjs-quickbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.23 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
72
73
74
75
76
77
{
"name": "@reyx/nestjs-quickbooks",
"version": "9.0.8",
"keywords": [
"nestjs",
"quickbooks"
],
"description": "An easy way to interact with the QuickBooks API in your NestJS applications.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && nest build",
"build:lib": "rimraf dist && nest build -p tsconfig.lib.json",
"copy:lib": "cp package.json .npmignore dist",
"lint": "tslint -p tsconfig.json -c tslint.json",
"publish-package": "npm run build:lib && npm run copy:lib && npm publish ./dist --access public",
"publish-package:beta": "npm run publish-package -- --tag beta --access public",
"publish-package:dry-run": "npm run publish-package -- --dry-run",
"version-patch": "npm version patch && git add . && git commit -m v$(cat package.json | jq -r '.version') && git push origin HEAD --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recursyve/nestjs-quickbooks.git"
},
"author": "Recursyve Solutions",
"license": "MIT",
"bugs": {
"url": "https://github.com/Recursyve/nestjs-quickbooks/issues"
},
"homepage": "https://github.com/Recursyve/nestjs-quickbooks#readme",
"directories": {
"lib": "lib"
},
"dependencies": {
"form-data": "^4.0.0",
"intuit-oauth": "^4.0.0"
},
"peerDependencies": {
"@nestjs/axios": ">=1.0.0",
"@nestjs/common": ">=9.0.0",
"@nestjs/core": ">=9.0.0",
"rxjs": ">=7.0.0"
},
"devDependencies": {
"@nestjs/axios": "^1.0.1",
"@nestjs/cli": "^9.1.8",
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/platform-express": "^9.2.1",
"@recursyve/nestjs-redis": "^9.0.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}