-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
56
57
58
59
60
61
{
"name": "address-index-ui",
"version": "1.0.0",
"description": "To run this project:",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test:jest": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "npx prettier --write \"**/*.mjs\""
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.mjs$": "babel-jest"
},
"testMatch": [
"**/tests/jest_js_tests/**/*.test.mjs"
],
"moduleFileExtensions": [
"js",
"mjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ONSdigital/address-index-ui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ONSdigital/address-index-ui/issues"
},
"homepage": "https://github.com/ONSdigital/address-index-ui#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.3.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-portsoc": "^1.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.3.0",
"jest": "^29.7.0",
"prettier": "^3.2.5"
},
"eslintConfig": {
"extends": "portsoc",
"root": true,
"env": {
"browser": true
}
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0",
"micromatch": "^4.0.8"
}
}