forked from httptoolkit/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 1.89 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
90
91
{
"version": "2.1.3",
"name": "@httptoolkit/httpsnippet",
"description": "HTTP request snippet generator for *most* languages",
"author": "Tim Perry <[email protected]>",
"homepage": "https://github.com/httptoolkit/httpsnippet",
"license": "MIT",
"main": "src/index.js",
"bin": "bin/httpsnippet",
"keywords": [
"api",
"clojure",
"csharp",
"curl",
"go",
"har",
"http",
"httpie",
"httr",
"java",
"javascript",
"jquery",
"kotlin",
"objc",
"objective-c",
"ocaml",
"php",
"python",
"request",
"requests",
"ruby",
"shell",
"snippet",
"swift",
"swift",
"unirest",
"xhr",
"xmlhttprequest"
],
"engines": {
"node": ">=10"
},
"files": [
"bin",
"src"
],
"repository": "httptoolkit/httpsnippet",
"bugs": {
"url": "https://github.com/httptoolkit/httpsnippet/issues"
},
"scripts": {
"quick": "mocha --no-timeouts --fgrep 'Request Validation' --invert",
"pretest": "standard && echint",
"test": "mocha --no-timeouts",
"posttest": "npm run coverage",
"coverage": "istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot"
},
"standard": {
"env": "mocha",
"ignore": [
"**/test/fixtures/**"
]
},
"echint": {
"ignore": [
"coverage/**",
"**/node_modules/**",
"**/fixtures/**"
]
},
"devDependencies": {
"echint": "^4.0.2",
"glob": "^6.0.1",
"istanbul": "^0.4.0",
"mocha": "^8.2.1",
"require-directory": "^2.1.1",
"should": "^13.2.3",
"standard": "^16.0.3"
},
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"event-stream": "3.3.4",
"form-data": "3.0.0",
"fs-readfile-promise": "^2.0.1",
"fs-writefile-promise": "^1.0.3",
"har-validator": "^5.0.0",
"stringify-object": "^3.3.0"
}
}