mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-22 04:05:42 +00:00
Align with @opencollection/types 0.9.1 which renamed the OAuth1 field from signatureEncoding to signatureMethod. Update converters, filestore, and all YML test fixtures. Increase OAuth1 UI test timeouts from 30s to 60s.
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@usebruno/converters",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"test": "node --experimental-vm-modules $(npx which jest) --colors --collectCoverage",
|
|
"prebuild": "npm run clean",
|
|
"build": "rollup -c",
|
|
"watch": "rollup -c -w",
|
|
"prepack": "npm run test && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@usebruno/schema": "^0.7.0",
|
|
"js-yaml": "^4.1.1",
|
|
"jscodeshift": "^17.3.0",
|
|
"lodash": "^4.17.21",
|
|
"nanoid": "3.3.8",
|
|
"xml2js": "^0.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@opencollection/types": "0.9.1",
|
|
"@rollup/plugin-alias": "^5.1.0",
|
|
"@rollup/plugin-commonjs": "^23.0.2",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-typescript": "^9.0.2",
|
|
"@usebruno/schema-types": "0.0.1",
|
|
"@web/rollup-plugin-copy": "^0.5.1",
|
|
"babel-jest": "^29.7.0",
|
|
"rimraf": "^5.0.7",
|
|
"rollup": "3.30.0",
|
|
"rollup-plugin-dts": "^5.0.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
"@rollup/plugin-terser": "^1.0.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"overrides": {
|
|
"rollup": "3.30.0"
|
|
}
|
|
}
|