-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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": "adonis-recaptcha2",
"version": "2.0.1",
"description": "Google reCAPTCHA v2 for AdonisJS",
"main": "./build/providers/RecaptchaProvider.js",
"files": [
"build/adonis-typings",
"build/providers",
"build/templates",
"build/instructions.js"
],
"scripts": {
"lint": "eslint . --ext=.ts",
"pretest": "npm run lint",
"test": "node japaFile.js",
"clean": "rm -rf build",
"compile": "npm run lint && npm run clean && tsc && npm run copyfiles",
"copyfiles": "copyfiles \"templates/**/*.txt\" build",
"build": "npm run compile",
"prepublishOnly": "npm run build"
},
"types": "./build/adonis-typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lookinlab/adonis-recaptcha2.git"
},
"keywords": [
"adonisjs",
"adonis-framework",
"adonis-recaptcha",
"adonis-recaptcha2",
"recaptcha",
"recaptcha2"
],
"author": "LookinGit",
"license": "MIT",
"bugs": {
"url": "https://github.com/lookinlab/adonis-recaptcha2/issues"
},
"dependencies": {
"@types/recaptcha2": "^1.3.0",
"recaptcha2": "^1.3.3"
},
"devDependencies": {
"@adonisjs/core": "^5.1.8",
"@adonisjs/fold": "^8.1.3",
"@adonisjs/mrm-preset": "^4.1.0",
"@adonisjs/sink": "^5.1.5",
"@types/node": "^15.12.4",
"copyfiles": "^2.4.1",
"eslint": "^7.29.0",
"eslint-plugin-adonis": "^1.3.2",
"japa": "^3.1.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"directories": {
"test": "test"
},
"adonisjs": {
"instructions": "./build/instructions.js",
"templates": {
"config": {
"src": "config/recaptcha.txt",
"dest": "recaptcha.ts"
}
},
"env": {
"RECAPTCHA_SITE_KEY": "",
"RECAPTCHA_SECRET_KEY": ""
},
"types": "adonis-recaptcha2",
"providers": [
"adonis-recaptcha2"
]
}
}