-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "recaptcha-promise",
"version": "3.1.0",
"description": "Node module for promise-based ReCAPTCHA verification",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
"test": "mocha --require ts-node/register --recursive \"test/**/*.test.*\"",
"lint": "tsc --noEmit -p tsconfig.lint.json && eslint .",
"lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix .",
"coverage": "c8 --reporter=text --reporter=lcov npm test",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meyfa/recaptcha-promise.git"
},
"keywords": [
"recaptcha",
"captcha"
],
"author": "Fabian Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/meyfa/recaptcha-promise/issues"
},
"homepage": "https://github.com/meyfa/recaptcha-promise",
"engines": {
"node": ">=18.16.1"
},
"devDependencies": {
"@meyfa/eslint-config": "8.0.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.10",
"c8": "10.1.3",
"eslint": "9.18.0",
"mocha": "11.1.0",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"undici": "7.1.0"
}
}