-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "nhsuk-prototype-kit-validation",
"version": "0.3.1",
"description": "Validation engine for NHS prototype kit apps. Declarative rules, custom validators, NHS-shaped error output.",
"keywords": [
"nhs",
"prototype",
"validation",
"nunjucks",
"express",
"nhsuk"
],
"homepage": "https://github.com/NHSDigital/nhsuk-prototype-kit-validation#readme",
"bugs": {
"url": "https://github.com/NHSDigital/nhsuk-prototype-kit-validation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NHSDigital/nhsuk-prototype-kit-validation.git"
},
"license": "MIT",
"author": "harry-uxd",
"type": "commonjs",
"main": "src/index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"files": [
"src",
"macros",
"examples",
"docs",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/postinstall.js",
"start": "node .",
"test": "node --test test/middleware.test.js",
"watch": "echo 'run this instead: npm start'"
},
"dependencies": {
"validate.js": "^0.13.1"
},
"devDependencies": {
"nhsuk-frontend": "^10.5.1",
"nhsuk-prototype-kit": "^8.3.0"
},
"peerDependencies": {
"express": ">=4.0.0"
}
}