-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "@recursyve/nestjs-sage",
"version": "7.0.0-beta.0",
"keywords": [
"nestjs",
"sage"
],
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recursyve/nestjs-sage.git"
},
"author": "Recursyve Solutions",
"license": "MIT",
"bugs": {
"url": "https://github.com/Recursyve/nestjs-sage/issues"
},
"homepage": "https://github.com/Recursyve/nestjs-sage#readme",
"directories": {
"lib": "lib"
},
"dependencies": {
"client-oauth2": "^4.3.3"
},
"peerDependencies": {
"@nestjs/common": "^7.1.0",
"@nestjs/core": "^7.1.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@nestjs/common": "^7.1.0",
"@nestjs/core": "^7.1.0",
"@nestjs/platform-express": "^7.1.0",
"@types/jest": "^25.2.3",
"dotenv": "^8.2.0",
"jest": "^26.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}