forked from Horat1us/node-cookiefile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.16 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.16 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cookiefile",
"version": "1.0.9",
"description": "Package for operating with Netscape HTTP Cookie File",
"main": "http-cookiefile.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/.bin/_mocha tests/read-write-update.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/horat1us/node-cookiefile.git"
},
"keywords": [
"libcurl",
"cookie",
"cookiefile",
"netscape",
"wget",
"cookie",
"file",
"header",
"http",
"request",
"response"
],
"author": "Alexander <horat1us> Letnikow",
"license": "MIT",
"bugs": {
"url": "https://github.com/horat1us/node-cookiefile/issues"
},
"homepage": "https://github.com/horat1us/node-cookiefile#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.0"
},
"dependencies": {
"file-exists": "^2.0.0",
"isnumeric": "^0.3.1"
},
"jshintConfig": {
"nodejs": true,
"camelcase": true,
"esversion": 6,
"curly": true,
"maxparams": 3,
"strict": "global",
"undef": true,
"unused": true,
"varstmt": true,
"devel": true,
"node": true
}
}