-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.63 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
92
{
"name": "balena-request",
"version": "14.0.1",
"description": "Balena HTTP client",
"type": "commonjs",
"main": "build/request.js",
"types": "build/request.d.ts",
"browser": {
"./build/request.js": "./build/request.js",
"./build/conditional-imports.js": "./build/conditional-imports.browser.js"
},
"homepage": "https://github.com/balena-io-modules/balena-request",
"repository": {
"type": "git",
"url": "git://github.com/balena-io-modules/balena-request.git"
},
"keywords": [
"balena",
"request",
"http"
],
"directories": {
"test": "tests"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "balena-lint -e js -e ts lib tests && tsc --noEmit --project tsconfig.dev.json",
"lint-fix": "balena-lint -e js -e ts --fix lib tests",
"pretest": "npm run build",
"test": "npm run test-node && npm run test-browser",
"posttest": "npm run lint",
"test-node": "mocha -r ts-node/register/transpile-only --reporter spec tests/**/*.spec.ts",
"test-browser": "mockttp -c karma start",
"build": "npx tsc",
"prepare": "npm run build",
"readme": "jsdoc2md --template doc/README.hbs build/request.js build/progress.js build/utils.js > README.md"
},
"author": "Balena Ltd. <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^7.2.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/progress-stream": "^2.0.0",
"@types/qs": "^6.9.3",
"@types/sinon": "^10.0.11",
"@types/temp": "^0.9.4",
"assert": "^2.0.0",
"balena-auth": "^6.0.1",
"balena-config-karma": "4.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^5.7.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"jsdoc-to-markdown": "^6.0.1",
"karma": "^6.3.17",
"mocha": "^10.0.0",
"mockttp": "^3.8.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"sinon": "^15.0.1",
"stream-browserify": "^3.0.0",
"string-to-stream": "^3.0.1",
"temp": "^0.8.4",
"timekeeper": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"util": "^0.12.4"
},
"dependencies": {
"@balena/node-web-streams": "^0.2.3",
"balena-errors": "^4.9.0",
"fetch-ponyfill": "^7.1.0",
"fetch-readablestream": "^0.2.0",
"form-data-encoder": "^4.0.2",
"formdata-node": "^6.0.3",
"progress-stream": "^2.0.0",
"qs": "^6.9.4",
"tslib": "^2.0.0",
"url": "^0.11.1"
},
"peerDependencies": {
"balena-auth": "^6.0.1"
},
"versionist": {
"publishedAt": "2024-12-05T18:43:12.902Z"
}
}