-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 loc) · 2.29 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
{
"name": "@nestlab/google-recaptcha",
"version": "3.8.0",
"description": "Google recaptcha module for NestJS.",
"keywords": [
"nestjs",
"recaptcha",
"google recaptcha",
"nestjs recaptcha"
],
"private": false,
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc && cp package.json dist && cp README.md dist && cp LICENSE dist && cp CONTRIBUTING.md dist && cp CHANGELOG.md dist",
"format": "prettier \"**/*.ts\" \"**/*.json\" --ignore-path ./.prettierignore --write",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings=0",
"test": "jest --silent=false",
"test:cov": "jest --coverage --coverageReporters=\"json-summary\"",
"publish-package": "cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/chvarkov/google-recaptcha.git"
},
"author": "Alexey Chvarkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/chvarkov/google-recaptcha/issues"
},
"homepage": "https://github.com/chvarkov/google-recaptcha",
"dependencies": {
"axios": "^1.7.7"
},
"peerDependencies": {
"@nestjs/common": ">=8.0.0 <11.0.0",
"@nestjs/core": ">=8.0.0 <11.0.0"
},
"peerDependenciesMeta": {
"@nestjs/graphql": {
"optional": true
}
},
"devDependencies": {
"@nestjs/apollo": "^12.0.9",
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@nestjs/graphql": "^12.0.9",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/testing": "^10.2.7",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.12",
"@types/node": "^18.7.14",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"apollo-server-express": "^3.10.2",
"eslint": "^8.23.0",
"graphql": "^16.6.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"supertest": "^6.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"roots": [
"<rootDir>/test"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}