-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "@google-cloud/recaptcha-edge",
"version": "1.0.0",
"description": "A reCAPTCHA Enterprise Typescript library for Edge Compute Platforms.",
"keywords": [
"recaptcha",
"waf",
"edge compute",
"bot",
"security"
],
"repository": "github:GoogleCloudPlatform/recaptcha-edge",
"homepage": "https://github.com/GoogleCloudPlatform/recaptcha-edge#readme",
"license": "Apache-2.0",
"author": "reCAPTCHA Team <[email protected]>",
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.esm.js",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"pack": "mkdir pkg && tar -czvf pkg/recaptcha_library.tar.gz dist/*",
"prepublishOnly": "npm run build",
"test": "vitest",
"devbuild": "npm install && npm run build",
"devclean": "rm -rf dist && rm -rf pkg && rm -rf node_modules && rm -rf coverage && rm package-lock.json",
"coverage": "vitest run --coverage"
},
"dependencies": {
"ipaddr.js": "^2.2.0",
"parse-multipart-form-data": "^1.0.0",
"picomatch": "^4.0.2",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.10",
"@types/picomatch": "^2.3.4",
"@types/url-parse": "^1.4.11",
"@vitest/coverage-v8": "^1.6.1",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.1",
"globals": "^15.14.0",
"prettier": "3.4.2",
"ts-standard": "^12.0.2",
"tslib": "^2.7.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.18.1",
"vitest": "1.6.1"
}
}