source: frontend/node_modules/cookie/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • 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.7.2",
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": "8.53.0",
19 "eslint-plugin-markdown": "3.0.1",
20 "mocha": "10.2.0",
21 "nyc": "15.1.0",
22 "safe-buffer": "5.2.1",
23 "top-sites": "1.1.194"
24 },
25 "files": [
26 "HISTORY.md",
27 "LICENSE",
28 "README.md",
29 "SECURITY.md",
30 "index.js"
31 ],
32 "main": "index.js",
33 "engines": {
34 "node": ">= 0.6"
35 },
36 "scripts": {
37 "bench": "node benchmark/index.js",
38 "lint": "eslint .",
39 "test": "mocha --reporter spec --bail --check-leaks test/",
40 "test-ci": "nyc --reporter=lcov --reporter=text npm test",
41 "test-cov": "nyc --reporter=html --reporter=text npm test",
42 "update-bench": "node scripts/update-benchmark.js"
43 }
44}
Note: See TracBrowser for help on using the repository browser.