-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "pinejs-client-request",
"version": "8.1.22",
"description": "This module provides a request backend for pinejs-client.",
"type": "commonjs",
"main": "request.js",
"types": "request.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:balena-io-modules/pinejs-client-request.git"
},
"author": "Pagan Gazzard <page@balena.io>",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"lint-fix": "balena-lint --fix request.ts",
"lint": "balena-lint request.ts",
"build": "tsc",
"test": "npm run build",
"posttest": "npm run lint",
"prepublish": "require-npm4-to-publish",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && npm run build"
},
"license": "MIT",
"dependencies": {
"@types/request": "^2.48.13",
"lru-cache": "^11.2.1",
"pinejs-client-core": "^8.4.0",
"request": "^2.88.2"
},
"devDependencies": {
"@balena/lint": "^9.3.6",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"require-npm4-to-publish": "1.0.0",
"typescript": "5.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"balena-lint --fix"
]
},
"versionist": {
"publishedAt": "2026-06-06T00:20:29.625Z"
}
}