-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "govuk-elements-nunjucks",
"version": "0.9.2",
"description": "GOV.UK elements as nunjucks",
"scripts": {
"test": "xo && jest",
"update": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlandbacon/govuk-elements-nunjucks.git"
},
"keywords": [
"nunjucks",
"gov.uk",
"elements"
],
"author": "Colin Oakley <colinoakley.digitaldwp@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/htmlandbacon/govuk-elements-nunjucks/issues"
},
"homepage": "https://github.com/htmlandbacon/govuk-elements-nunjucks#readme",
"jest": {
"testEnvironment": "node",
"snapshotSerializers": [
"jest-serializer-html-string"
]
},
"xo": {
"esnext": true,
"space": true,
"env": [
"node",
"jest"
],
"rules": {
"max-lines": 0
}
},
"devDependencies": {
"cheerio": "^0.22.0",
"jest": "^20.0.4",
"jest-serializer-html-string": "^1.0.1",
"nunjucks": "^3.0.0"
}
}