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 start
This 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 build
This builds to /dist
.
To run tests, use
npm run test # or yarn test
To lint code, use
npm run lint # or yarn lint
To calculate library size, use
npm run size # or yarn size
To visualize bundle, use
npm run analyze # or yarn analyze
It is recommended to run
npm run lint --fix # or yarn lint --fix
before merging to master branch.