source: node_modules/cookie/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "name": "cookie",
3 "description": "HTTP server cookie parsing and serialization",
4 "version": "0.5.0",
5 "author": "Roman Shtylman <shtylman@gmail.com>",
6 "contributors": [
7 "Douglas Christopher Wilson <doug@somethingdoug.com>"
8 ],
9 "license": "MIT",
10 "keywords": [
11 "cookie",
12 "cookies"
13 ],
14 "repository": "jshttp/cookie",
15 "devDependencies": {
16 "beautify-benchmark": "0.2.4",
17 "benchmark": "2.1.4",
18 "eslint": "7.32.0",
19 "eslint-plugin-markdown": "2.2.1",
20 "mocha": "9.2.2",
21 "nyc": "15.1.0",
22 "safe-buffer": "5.2.1",
23 "top-sites": "1.1.97"
24 },
25 "files": [
26 "HISTORY.md",
27 "LICENSE",
28 "README.md",
29 "SECURITY.md",
30 "index.js"
31 ],
32 "engines": {
33 "node": ">= 0.6"
34 },
35 "scripts": {
36 "bench": "node benchmark/index.js",
37 "lint": "eslint .",
38 "test": "mocha --reporter spec --bail --check-leaks test/",
39 "test-ci": "nyc --reporter=lcov --reporter=text npm test",
40 "test-cov": "nyc --reporter=html --reporter=text npm test",
41 "update-bench": "node scripts/update-benchmark.js",
42 "version": "node scripts/version-history.js && git add HISTORY.md"
43 }
44}
Note: See TracBrowser for help on using the repository browser.