This package is based on Postman's postman-collection (https://github.com/postmanlabs/postman-collection). It is intended to be simplistic and to provide intellisense on the collection schema defined by Postman (https://schema.postman.com/json/collection/v2.1.0/collection.json).
Created using TSDX.
To develop while building typescript files inside /src use
npm start # or yarn startThis builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
To do a one-off build, use
npm run build # or yarn buildThis builds to /dist.
To run tests, use
npm run test # or yarn testTo lint code, use
npm run lint # or yarn lintTo calculate library size, use
npm run size # or yarn sizeTo visualize bundle, use
npm run analyze # or yarn analyzeIt is recommended to run
npm run lint --fix # or yarn lint --fixbefore merging to master branch.