-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 897 Bytes
/
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
{
"name": "cookie-to-map",
"version": "0.6.3",
"description": "A lightweight JS library to convert cookie strings to map.",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --check-coverage --lines 90 --per-file mocha spec/**/*.js --recursive --timeout=10000 --exit --reporter mocha-junit-reporter --reporter-options mochaFile=reports/mocha/test-results.xml",
"lint": "eslint '**/*.js' --ignore-pattern node_modules/"
},
"keywords": [
"cookie-strings",
"cookie",
"cookie-helper",
"cookie-parser",
"cookies",
"request",
"header",
"parse",
"map",
"object",
"key-value"
],
"author": "Tejas Shetty",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.1.0",
"nyc": "^15.1.0"
}
}