-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "epb-frontend",
"version": "1.0.0",
"description": "Frontend for the Energy Performance of Buildings Register",
"repository": {
"type": "git",
"url": "git+https://github.com/communitiesuk/epb-frontend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/communitiesuk/epb-frontend/issues"
},
"homepage": "https://github.com/communitiesuk/epb-frontend#readme",
"engines": {
"node": "~20"
},
"dependencies": {
"govuk-frontend": "^5.7.1"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"decomment": "^0.9.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"standard": "^17.1.2"
},
"scripts": {
"fmt": "npm run lint-fix",
"lint": "standard \"assets/javascript/**/*.js\"",
"lint-fix": "standard --fix \"assets/javascript/**/*.js\"",
"test": "jest",
"copy-without-comments": "node ./build/copy-without-comments.js"
},
"standard": {
"parser": "@babel/eslint-parser",
"globals": [
"location",
"MutationObserver",
"MouseEvent"
]
}
}