-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@hmcts/cookie-manager",
"description": "@hmcts/cookie-manager is a JavaScript library for handling and managing a services cookies.",
"version": "1.1.0",
"type": "module",
"main": "./dist/cookie-manager.js",
"types": "./dist/cookie-manager.d.ts",
"scripts": {
"build:package": "rollup -c rollup.package.config.js",
"build:browser": "rollup -c rollup.browser.config.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint",
"prepare": "rimraf ./dist ./package && tsc -p tsconfig.json && npm run build:package"
},
"engines": {
"node": ">=12.0.0"
},
"author": "HM Courts and Tribunals",
"repository": {
"type": "git",
"url": "git+https://github.com/hmcts/cookie-manager.git"
},
"bugs": {
"url": "https://github.com/hmcts/cookie-manager/issues"
},
"homepage": "https://github.com/hmcts/cookie-manager",
"keywords": [
"cookie",
"manager",
"hmcts"
],
"files": [
"package.json",
"*.md",
"dist/cookie-manager.js",
"dist/cookie-manager.d.ts"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@typescript-eslint/eslint-plugin": "8.40.0",
"@typescript-eslint/parser": "8.40.0",
"@vitest/ui": "2.1.8",
"eslint": "9.33.0",
"jest-when": "3.6.0",
"jsdom": "26.1.0",
"rimraf": "3.0.2",
"rollup": "4.47.1",
"rollup-plugin-cleanup": "3.2.1",
"typescript": "5.9.2",
"vitest": "^2.1.8"
}
}