-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@mswjs/cookies",
"version": "1.1.1",
"description": "Manage request/response cookies in the environments where those are not supported.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.mjs"
}
},
"scripts": {
"start": "tsup --watch",
"test": "jest",
"clean": "rimraf lib",
"build": "pnpm clean && tsup",
"release": "release publish",
"prepack": "pnpm build",
"prepare": "pnpm simple-git-hooks init",
"prepublishOnly": "pnpm test"
},
"repository": "git@github.com:mswjs/cookies.git",
"author": "Artem Zakharchenko",
"license": "MIT",
"files": [
"README.md",
"lib"
],
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.15.6",
"devDependencies": {
"@commitlint/cli": "^16.0.3",
"@commitlint/config-conventional": "^16.0.0",
"@ossjs/release": "^0.8.1",
"@types/jest": "^29.5.7",
"@types/set-cookie-parser": "^2.4.5",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-miniflare": "^2.14.1",
"rimraf": "^5.0.5",
"set-cookie-parser": "^2.6.0",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^5.2.2",
"whatwg-fetch": "^3.6.19"
}
}