source: frontend/node_modules/tough-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: 2.6 KB
Line 
1{
2 "author": {
3 "name": "Jeremy Stashewsky",
4 "email": "jstash@gmail.com",
5 "website": "https://github.com/stash"
6 },
7 "contributors": [
8 {
9 "name": "Ivan Nikulin",
10 "website": "https://github.com/inikulin"
11 },
12 {
13 "name": "Shivan Kaul Sahib",
14 "website": "https://github.com/ShivanKaul"
15 },
16 {
17 "name": "Clint Ruoho",
18 "website": "https://github.com/ruoho"
19 },
20 {
21 "name": "Ian Livingstone",
22 "website": "https://github.com/ianlivingstone"
23 },
24 {
25 "name": "Andrew Waterman",
26 "website": "https://github.com/awaterma"
27 },
28 {
29 "name": "Michael de Libero ",
30 "website": "https://github.com/medelibero-sfdc"
31 },
32 {
33 "name": "Jonathan Stewmon",
34 "website": "https://github.com/jstewmon"
35 },
36 {
37 "name": "Miguel Roncancio",
38 "website": "https://github.com/miggs125"
39 },
40 {
41 "name": "Sebastian Mayr",
42 "website": "https://github.com/Sebmaster"
43 },
44 {
45 "name": "Alexander Savin",
46 "website": "https://github.com/apsavin"
47 },
48 {
49 "name": "Lalit Kapoor",
50 "website": "https://github.com/lalitkapoor"
51 },
52 {
53 "name": "Sam Thompson",
54 "website": "https://github.com/sambthompson"
55 }
56 ],
57 "license": "BSD-3-Clause",
58 "name": "tough-cookie",
59 "description": "RFC6265 Cookies and Cookie Jar for node.js",
60 "keywords": [
61 "HTTP",
62 "cookie",
63 "cookies",
64 "set-cookie",
65 "cookiejar",
66 "jar",
67 "RFC6265",
68 "RFC2965"
69 ],
70 "version": "4.1.4",
71 "homepage": "https://github.com/salesforce/tough-cookie",
72 "repository": {
73 "type": "git",
74 "url": "git://github.com/salesforce/tough-cookie.git"
75 },
76 "bugs": {
77 "url": "https://github.com/salesforce/tough-cookie/issues"
78 },
79 "main": "./lib/cookie",
80 "files": [
81 "lib"
82 ],
83 "scripts": {
84 "version": "genversion lib/version.js && git add lib/version.js",
85 "test": "vows test/*_test.js && npm run eslint",
86 "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js",
87 "eslint": "eslint --env node --ext .js .",
88 "prettier": "prettier '**/*.{json,ts,yaml,md}'",
89 "format": "npm run eslint -- --fix"
90 },
91 "engines": {
92 "node": ">=6"
93 },
94 "devDependencies": {
95 "async": "^2.6.2",
96 "eslint": "^5.16.0",
97 "eslint-config-prettier": "^4.2.0",
98 "eslint-plugin-prettier": "^3.0.1",
99 "genversion": "^2.1.0",
100 "nyc": "^14.0.0",
101 "prettier": "^1.17.0",
102 "vows": "^0.8.2"
103 },
104 "dependencies": {
105 "psl": "^1.1.33",
106 "punycode": "^2.1.1",
107 "universalify": "^0.2.0",
108 "url-parse": "^1.5.3"
109 }
110}
Note: See TracBrowser for help on using the repository browser.