-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "set-cookie-parser",
"version": "3.1.0",
"description": "Parses set-cookie headers into objects",
"homepage": "https://github.com/nfriedly/set-cookie-parser",
"repository": "nfriedly/set-cookie-parser",
"author": {
"name": "Nathan Friedly",
"url": "http://nfriedly.com/"
},
"files": [
"lib",
"dist"
],
"main": "./dist/set-cookie.cjs",
"module": "./lib/set-cookie.js",
"types": "./lib/set-cookie.d.ts",
"type": "module",
"exports": {
".": {
"types": "./lib/set-cookie.d.ts",
"module-sync": "./lib/set-cookie.js",
"import": "./lib/set-cookie.js",
"require": "./dist/set-cookie.cjs"
}
},
"sideEffects": false,
"keywords": [
"set-cookie",
"set",
"cookie",
"cookies",
"header",
"parse",
"parser"
],
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"sinon": "^21.0.3",
"tsd": "^0.33.0"
},
"scripts": {
"lint": "eslint . --ignore-pattern '!.eslintrc.js'",
"test": "npm run build && npm run lint && mocha && npm run typecheck",
"typecheck": "tsd",
"autofix": "npm run lint -- --fix",
"format": "npm run lint -- --fix",
"build": "node ./build-cjs.js",
"prepare": "husky"
},
"license": "MIT",
"prettier": {
"trailingComma": "es5"
}
}