forked from readmeio/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.78 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.78 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
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
{
"version": "6.2.1",
"name": "@readme/httpsnippet",
"description": "HTTP Request snippet generator for *most* languages",
"homepage": "https://github.com/readmeio/httpsnippet",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": ">=16"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/readmeio/httpsnippet.git"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "rm -rf dist/",
"lint": "eslint .",
"prebuild": "npm run clean",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.js\"",
"test": "jest --coverage"
},
"devDependencies": {
"@readme/eslint-config": "^10.6.1",
"@types/eslint": "^8.40.2",
"@types/event-stream": "^4.0.1",
"@types/har-format": "^1.2.11",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/qs": "^6.9.7",
"@types/stringify-object": "^4.0.2",
"eslint": "^8.44.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"require-directory": "^2.1.1",
"ts-jest": "^29.1.1",
"type-fest": "^3.12.0",
"typescript": "^5.1.6"
},
"dependencies": {
"event-stream": "4.0.1",
"form-data": "^4.0.0",
"qs": "^6.11.2",
"stringify-object": "^3.3.0"
},
"prettier": "@readme/eslint-config/prettier"
}