-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.72 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
{
"name": "@nice-digital/cks",
"private": true,
"version": "1.0.0",
"description": "Website for CKS",
"scripts": {
"test": "echo \"Error: runs tests for each sub folder independently\" && exit 1",
"// AUDIT": "",
"// audit: no --omit=dev in this repo - gatsby and the whole build toolchain are devDependencies here, so --omit=dev leaves 4 packages to audit and always passes. --registry is needed as CodeArtifact has no audit endpoint. The root has no dependencies of its own, so there is nothing to audit here": "",
"audit": "npm run audit:gatsby && npm run audit:functional-tests && npm run audit:fake-api",
"audit:gatsby": "npm --prefix gatsby audit --package-lock-only --audit-level=critical --registry=https://registry.npmjs.org",
"audit:functional-tests": "npm --prefix functional-tests audit --package-lock-only --audit-level=critical --registry=https://registry.npmjs.org",
"audit:fake-api": "npm --prefix fake-api audit --package-lock-only --audit-level=critical --registry=https://registry.npmjs.org",
"audit:teamcity": "npm run audit",
"//": "Convenient way to install dependencies for all 3 node sub folders",
"postinstall": "(cd functional-tests && npm ci); (cd gatsby && npm ci); (cd fake-api && npm ci)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nice-digital/cks-gatsby.git"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"author": "NICE Digital (https://www.nice.org.uk/digital)",
"contributors": [
"NICE Digital Services (https://www.nice.org.uk/digital)",
"Ian Routledge (http://ediblecode.com)"
],
"license": "MIT",
"homepage": "https://github.com/nice-digital/cks-gatsby#readme",
"volta": {
"node": "24.18.1"
}
}