-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·89 lines (89 loc) · 1.82 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"author": "Altus Aero LLC <[email protected]> (https://altusaero.com/)",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/altusaero/jetta/issues"
},
"contributors": [
"Daniel Bankhead <[email protected]> (https://danielbankhead.com/)"
],
"dependencies": {},
"description": "A powerful, multi-protocol request library and toolkit ✈️",
"devDependencies": {
"bronze": "^1.4.0",
"coveralls": "^2.11.15",
"nsp": "^2.8.0",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tap-summary": "^4.0.0",
"tape": "^4.8.0"
},
"engines": {
"node": ">=7.9.0",
"npm": ">=4.0.0"
},
"homepage": "https://github.com/altusaero/jetta",
"keywords": [
"jetta",
"http",
"https",
"url",
"get",
"fetch",
"wget",
"curl",
"request",
"head",
"post",
"put",
"uri",
"validate",
"cookie",
"jar",
"parse",
"public",
"suffix",
"IDN",
"IDNA",
"data",
"file",
"protocol"
],
"license": "Apache-2.0",
"main": "index.js",
"name": "jetta",
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"reporter": [
"html",
"text"
],
"statements": 100
},
"pre-commit": {
"run": [
"test"
],
"silent": false
},
"preferGlobal": false,
"private": false,
"publishConfig": {
"tag": "latest"
},
"repository": "altusaero/jetta",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"nsp": "nsp check",
"postversion": "git push && git push --tags",
"start": "node .",
"tape": "tape test/*/ | tap-summary --no-progress",
"test": "npm run nsp && npm run lint && nyc --check-coverage npm run tape"
},
"standard": {},
"version": "1.2.0"
}