-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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": "@ts-stack/cookies",
"type": "module",
"description": "Cookies, optionally signed using Keygrip.",
"version": "1.2.2",
"author": "Jed Schmidt <[email protected]> (http://jed.is)",
"license": "MIT",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"import": "./dist-mjs/index.js",
"require": "./dist-cjs/index.js",
"default": "./dist-mjs/index.js"
}
},
"imports": {
"#lib/*": "./dist-mjs/*"
},
"repository": "https://github.com/ts-stack/cookies",
"scripts": {
"build": "tsc -b tsconfig.mjs.json && tsc -b tsconfig.cjs.json && cp package.cjs.json dist-cjs/package.json",
"lint": "eslint src",
"build-test": "yarn build && tsc -b tsconfig.e2e.json",
"test": "yarn build-test && yarn esm-jest",
"esm-jest": "node --env-file=.env --experimental-vm-modules --no-warnings=ExperimentalWarning --enable-source-maps node_modules/jest/bin/jest.js"
},
"dependencies": {
"keygrip": "~1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/keygrip": "^1.0.6",
"@types/node": "^22.2.0",
"@types/restify": "^8.5.12",
"@types/supertest": "^6.0.2",
"eslint": "^9.9.0",
"express": "4.19.2",
"jest": "^29.7.0",
"nyc": "17.0.0",
"prettier": "^3.3.3",
"restify": "11.1.0",
"rimraf": "^6.0.1",
"supertest": "7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"engines": {
"node": ">= 18.14.0"
}
}