-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "koa-cookies",
"description": "Set, clear, and parse cookies in your Koa application",
"version": "5.1.0",
"author": {
"name": "Autumn Z"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"prebuild": "npm t",
"preversion": "npm run build",
"test": "sortpack && run-s test:ts test:lint test:tape",
"test:lint": "ts-standard src/",
"test:tape": "ts-node node_modules/.bin/tape src/index.test.ts | tap-spec",
"test:ts": "tsc --noEmit"
},
"homepage": "https://github.com/zautumnz/koa-cookies#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zautumnz/koa-cookies.git"
},
"bugs": "https://github.com/zautumnz/koa-cookies/issues",
"keywords": [
"cookie",
"cookies",
"koa"
],
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@types/koa": "3.0.1",
"@types/node": "24.10.0",
"koa": "3.1.2",
"npm-run-all": "4.1.5",
"sortpack": "4.0.1",
"supertest": "7.1.4",
"tap-spec": "5.0.0",
"tape": "5.9.0",
"ts-node": "10.9.2",
"ts-standard": "12.0.2",
"typescript": "5.9.3"
}
}