-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "ndx",
"version": "1.0.0",
"description": "TODO:",
"main": "index.js",
"private": true,
"scripts": {
"start": "rm -r _site ; eleventy --serve",
"build": "eleventy",
"lint": "prettier -c .",
"test": "jest --passWithNoTests",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/co-cddo/ndx.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/co-cddo/ndx/issues"
},
"homepage": "https://github.com/co-cddo/ndx#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@x-govuk/govuk-eleventy-plugin": "^6.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-sh": "^0.14.0"
},
"jest": {
"testEnvironment": "jsdom"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 4.5.0"
},
"engineStrict": true,
"prettier": {
"singleQuote": false,
"printWidth": 120,
"trailingComma": "all",
"semi": false,
"plugins": [
"prettier-plugin-sh"
]
},
"packageManager": "[email protected]",
"dependencies": {
"@kevingimbel/eleventy-plugin-mermaid": "^2.2.1"
}
}