-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "recaptcha-v3",
"version": "1.11.3",
"keywords": [
"captcha",
"recaptcha",
"recaptcha-v3"
],
"bugs": {
"url": "https://github.com/AurityLab/recaptcha-v3/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AurityLab/recaptcha-v3"
},
"license": "Apache-2.0",
"author": "AB INNOVISION UG <[email protected]>",
"main": "dist/ReCaptcha.js",
"types": "dist/ReCaptcha.d.ts",
"files": [
"/dist",
"/README.md",
"/LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"check": "concurrently 'yarn lint:check' 'yarn format:check' 'yarn sort:check'",
"demo": "parcel demo/src/index.html",
"fix": "concurrently 'yarn lint:fix' 'yarn format:fix' 'yarn sort:fix'",
"format:check": "prettier --check '{src/**,demo/**,test/**,.}/*.{ts,js,html}' '**/*.{json,json5,yaml,yml}'",
"format:fix": "prettier --write '{src/**,demo/**,test/**,.}/*.{ts,js,html}' '**/*.{json,json5,yaml,yml}'",
"postinstall": "husky install",
"lint:check": "eslint '{src/**,demo/**,test/**,.}/*.{js,ts}'",
"lint:fix": "eslint --fix '{src/**,demo/**,test/**,.}/*.{js,ts}'",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"sort:check": "sort-package-json --check",
"sort:fix": "sort-package-json",
"test-integration": "vitest run",
"test-integration:watch": "vitest watch"
},
"commitlint": {
"extends": [
"@abinnovision/commitlint-config"
]
},
"lint-staged": {
"{src/**,demo/**,test/**,.}/*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"{src/**,demo/**,test/**,.}/*.{ts,js,html}": [
"prettier --write"
],
"**/*.{json,json5,yaml,yml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"prettier": "@abinnovision/prettier-config",
"devDependencies": {
"@abinnovision/commitlint-config": "^2.2.1",
"@abinnovision/eslint-config-base": "^2.2.0",
"@abinnovision/eslint-config-typescript": "^2.2.1",
"@abinnovision/prettier-config": "^2.1.0",
"@commitlint/cli": "^19.8.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.10",
"@vitest/browser": "^2.0.5",
"concurrently": "^8.2.2",
"eslint": "^9.22.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"parcel": "^2.13.3",
"pinst": "^3.0.0",
"playwright": "^1.50.1",
"prettier": "^3.5.3",
"sort-package-json": "^2.15.1",
"typescript": "^5.8.2",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]"
}