-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "@studio/json-request",
"version": "4.0.0",
"description": "A tiny Node HTTP(S) request wrapper, for JSON requests and responses",
"main": "lib/request.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch": "mocha --watch",
"build": "tsc --project tsconfig.pack.json",
"clean": "rimraf --glob 'lib/*.d.ts'",
"prepack": "npm run build",
"postpack": "npm run clean",
"preversion": "npm run lint && tsc && npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish"
},
"keywords": [
"http",
"https",
"json",
"request",
"timeout",
"validation"
],
"author": "Maximilian Antoni <max@javascript.studio>",
"homepage": "https://github.com/javascript-studio/studio-json-request",
"eslintConfig": {
"extends": "@studio"
},
"dependencies": {
"@studio/fail": "^1.8.0",
"@studio/log": "^2.1.2",
"@types/node": "^16.18.76"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^12.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"@studio/log-x": "^1.3.1",
"@studio/tsconfig": "^1.3.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/studio-json-request.git"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"license": "MIT"
}