mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 20:01:28 +00:00
* move interpolateMockVars function inside the main interpolate logic inside bruno-common. * improve comments for JSON escaping logic in interpolate function * update faker-functions to use CommonJS module syntax to satisfy jest and add regex validation tests --------- Co-authored-by: sanjai0py <sanjailucifer666@gmail.com> Co-authored-by: ramki-bruno <ramki@usebruno.com>
38 lines
872 B
JSON
38 lines
872 B
JSON
{
|
|
"name": "@usebruno/common",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"prebuild": "npm run clean",
|
|
"build": "rollup -c",
|
|
"prepack": "npm run test && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@faker-js/faker": "^9.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^23.0.2",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"rollup":"3.29.5",
|
|
"rollup-plugin-dts": "^5.0.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"overrides": {
|
|
"rollup": "3.29.5"
|
|
}
|
|
}
|