-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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": "express-html-validator",
"description": "✅ Automatic HTML validation middleware for Express applications.",
"author": "Roosevelt Framework Team <rooseveltframework@gmail.com>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/express-html-validator/graphs/contributors"
}
],
"version": "1.0.1",
"files": [
"templates",
"express-html-validator.js",
"*.md"
],
"homepage": "https://rooseveltframework.org/docs/express-html-validator/latest",
"license": "CC-BY-4.0",
"main": "express-html-validator.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"app-root-dir": "1.0.2",
"html-validate": "10.12.1",
"minimatch": "10.2.5",
"prismjs": "1.30.0",
"tamper": "1.1.0"
},
"devDependencies": {
"ava": "7.0.0",
"c8": "11.0.0",
"eslint": "10.2.0",
"eslint-plugin-ava": "16.0.1",
"express": "5.2.1",
"proxyquire": "2.1.3",
"standard": "17.1.2",
"supertest": "7.2.2",
"teddy": "1.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/express-html-validator.git"
},
"keywords": [
"Express",
"Express.js",
"html",
"validation"
],
"scripts": {
"coverage": "c8 --reporter=text --reporter=lcov ava",
"lint": "standard && eslint test/test.js",
"test": "ava"
},
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}