-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@sec-ant/set-cookie-parser",
"description": "Yet another \"Set-Cookie\" parser",
"private": false,
"version": "0.0.5",
"type": "module",
"files": [
"./dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sec-ant/set-cookie-parser.git"
},
"homepage": "https://github.com/Sec-ant/set-cookie-parser",
"bugs": {
"url": "https://github.com/Sec-ant/set-cookie-parser/issues",
"email": "zzwu@zju.edu.cn"
},
"keywords": [
"set-cookie",
"set-cookie-parser"
],
"author": {
"name": "Ze-Zheng Wu"
},
"license": "MIT",
"config": {},
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"type-check": "tsc --noEmit --emitDeclarationOnly false",
"prebuild": "npm run type-check",
"build": "vite build",
"postbuild": "tsc",
"pretest": "npm run build",
"pretest:ui": "npm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"prepublishOnly": "npm run build",
"ncu": "npx npm-check-updates -u",
"postncu": "npm i"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/browser": "^1.2.0",
"@vitest/coverage-istanbul": "^1.2.0",
"@vitest/ui": "^1.2.0",
"eslint": "^8.56.0",
"npm-check-updates": "^16.14.12",
"playwright": "^1.40.1",
"semantic-release": "^22.0.12",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.2.0"
}
}