You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
{ |
|
"name": "cookie-parser", |
|
"description": "Parse HTTP request cookies", |
|
"version": "1.4.6", |
|
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)", |
|
"contributors": [ |
|
"Douglas Christopher Wilson <doug@somethingdoug.com>" |
|
], |
|
"license": "MIT", |
|
"repository": "expressjs/cookie-parser", |
|
"keywords": [ |
|
"cookie", |
|
"middleware" |
|
], |
|
"dependencies": { |
|
"cookie": "0.4.1", |
|
"cookie-signature": "1.0.6" |
|
}, |
|
"devDependencies": { |
|
"eslint": "7.32.0", |
|
"eslint-config-standard": "14.1.1", |
|
"eslint-plugin-import": "2.25.2", |
|
"eslint-plugin-markdown": "2.2.1", |
|
"eslint-plugin-node": "11.1.0", |
|
"eslint-plugin-promise": "4.3.1", |
|
"eslint-plugin-standard": "4.1.0", |
|
"mocha": "9.1.3", |
|
"nyc": "15.1.0", |
|
"supertest": "6.1.6" |
|
}, |
|
"files": [ |
|
"LICENSE", |
|
"HISTORY.md", |
|
"index.js" |
|
], |
|
"engines": { |
|
"node": ">= 0.8.0" |
|
}, |
|
"scripts": { |
|
"lint": "eslint .", |
|
"test": "mocha --reporter spec --bail --check-leaks test/", |
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test", |
|
"test-cov": "nyc --reporter=html --reporter=text npm test" |
|
} |
|
}
|
|
|