-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 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
{
"name": "balena-registry-proxy",
"version": "5.0.91",
"description": "Proxied names for balena registry release images",
"private": true,
"main": "src/app",
"scripts": {
"clean": "rimraf dist",
"check": "tsc --pretty --noEmit --diagnostics --project ./tsconfig.json && tsc --noEmit --project ./tsconfig.dev.json",
"lint": "balena-lint -t ./tsconfig.dev.json src tests",
"lint-fix": "balena-lint -t ./tsconfig.dev.json --fix src tests",
"test:docker": "mocha --config tests/.mocharc.docker.js",
"test:node": "mocha --config tests/.mocharc.js",
"test:fast": "mocha --config tests/.mocharc.fast.js",
"test:compose": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up --build --remove-orphans --exit-code-from=sut ; npm run compose:down",
"compose:down": "docker-compose -f docker-compose.yml -f docker-compose.test.yml down",
"test": "npm run lint && npm run build && npm run test:node",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-playground/balena-registry-proxy.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/balena-io-playground/balena-registry-proxy/issues"
},
"homepage": "https://github.com/balena-io-playground/balena-registry-proxy#readme",
"dependencies": {
"@balena/env-parsing": "^1.1.12",
"auth-header": "^1.0.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@balena/lint": "^9.0.1",
"@types/auth-header": "^1.0.6",
"@types/chai": "^4.3.19",
"@types/dockerode": "^3.3.31",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.4",
"@types/supertest": "^6.0.2",
"chai": "^4.5.0",
"dockerode": "^4.0.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.ts": [
"balena-lint -t ./tsconfig.dev.json --fix"
]
},
"engines": {
"node": "^22.2.0",
"npm": "^10.7.0"
},
"versionist": {
"publishedAt": "2024-11-25T01:32:14.479Z"
}
}