forked from toondaey/nestjs-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.92 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@boyuai/nestjs-oauth2-server",
"version": "0.1.0",
"description": "A NestJS wrapper for oauth2-server",
"main": "index.js",
"types": "index.d.ts",
"author": "B'Tunde Aromire",
"keywords": [
"nestjs oauth2 server",
"nestjs oauth2",
"@nestjs/oauth2-server",
"nest oauth2 server",
"nestjs",
"nest"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"commit": "commit",
"format": "prettier --write lib/**/*.ts test/**/*.ts",
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"build:watch": "rimraf -rf dist && tsc -p tsconfig.build.json -w",
"lint": "eslint lib/**/*.ts --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "npm run test:integration",
"test:integration": "jest --config ./test/jest-e2e.config.json --runInBand",
"test:cov": "jest --config ./test/jest-e2e.config.json --runInBand --coverage",
"prerelease": "npm run build",
"release": "dotenv release-it --"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/prompt-cli": "11.0.0",
"@compodoc/compodoc": "1.1.12",
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@nestjs/platform-express": "7.6.15",
"@nestjs/testing": "7.6.15",
"@types/jest": "26.0.23",
"@types/node": "13.13.52",
"@types/oauth2-server": "3.0.12",
"@types/rimraf": "3.0.1",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"dotenv-cli": "4.0.0",
"eslint": "7.26.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"moment": "2.29.1",
"oauth2-server": "3.1.1",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"release-it": "14.6.2",
"renovate": "24.119.23",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"supertest": "6.1.3",
"ts-jest": "26.5.6",
"typescript": "4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boyuai/nestjs-oauth2-server.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/boyuai/nestjs-oauth2-server/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.ts": [
"prettier --write"
],
"test/**/*.ts": [
"prettier --write"
]
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0 || ^8.0.10",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0 || ^7.2.0"
},
"homepage": "https://github.com/boyuai/nestjs-oauth2-server#readme",
"publishConfig": {
"access": "public"
}
}