-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.54 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
{
"name": "@roadiehq/roadie-agent",
"description": "Roadie Agent library to build secure custom functionality targeting Roadie instances.",
"repository": {
"type": "git",
"url": "git+https://github.com/RoadieHQ/roadie-agent.git"
},
"homepage": "https://roadie.io",
"author": "RoadieHQ",
"keywords": [],
"version": "1.1.3",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"main": "build/index.esm.js",
"types": "build/index.d.ts"
},
"main": "./build/index.js",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*",
"config/accept.json"
],
"scripts": {
"test": "yarn build && mocha --inspect --require source-map-support/register --bail ./build/test/",
"build": "rimraf build && tsc && tsc-alias && yarn copy-files",
"preversion": "yarn lint && yarn build && yarn test",
"release": "changeset version && yarn prettier --write 'src' && yarn install",
"lint": "eslint --ext ts,js --fix src",
"format": "prettier src/**/*.ts -w",
"copy-files": "copyfiles -u 1 config/**/*.json build/config",
"build-live": "tsc -w && tsc-alias -w"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@aws-sdk/lib-storage": "^3.515.0",
"@aws-sdk/s3-request-presigner": "^3.515.0",
"@backstage/catalog-model": "^1.4.1",
"@backstage/plugin-catalog-backend": "^1.11.0",
"@backstage/plugin-catalog-node": "^1.3.6",
"@changesets/cli": "^2.26.2",
"archiver": "^6.0.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"node-fetch": "^2.6.11",
"pino": "^8.14.2",
"snyk-broker": "4.161.5",
"unzipper": "^0.10.14"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.2",
"@types/sinon": "^10.0.13",
"@types/unzipper": "^0.10.9",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"copyfiles": "^2.4.1",
"esbuild": "^0.20.0",
"eslint": "^7.27.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^11.2.0",
"mocha": "^10.1.0",
"msw": "^0.35.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^15.0.0",
"source-map-support": "^0.5.19",
"ts-mock-imports": "^1.3.8",
"tsc-alias": "^1.2.11",
"tsx": "^4.7.1",
"typescript": "next"
}
}