npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fb-pricing

v1.1.0

Published

legacy edible pricing

Readme

fb-pricing

Table of Contents

Installation

npm install fb-pricing --save

Getting Started

  • Run: npm install inside your project to install dependencies.
  • Run: npm install typings -g (If typings is not installed before run this command)
  • Run:npm install gulp -g to install Gulp globally
  • Run:npm install rimraf -g to install globally

How to Use (FIX)

Here is the list of tasks available out of the box and run these via npm run <task>

  build             Perform lib build
  clean             Cleans artifacts and regenerate
  test              Run spec tests
  debug             FIX

Publishing Your Code (FIX)

Once your tests are passing (ideally with a Travis CI green run), you might be ready to publish your code to npm.

Bumping version number and tagging the repository with it can be done as mentioned below. For more details read http://semver.org/

Available options to update version

npm run patch     # makes v0.1.0 → v0.1.1
npm run feature   # makes v0.1.1 → v0.2.0
npm run release   # makes v0.2.1 → v1.0.0

Publishing updated version can be done via,

npm run <release | feature | patch>
npm publish

Contributing

This project follows the standard "git-flow" workflow. git-flow

Branches and functions

  1. Master - Release branch. History of master product release history. Sacred branch, All code in this branch has been qualified.
  2. Staging A.K.A Release - Qualification Branch.
  3. Develop - CI branch, this is the primary branch developers branch from and merge to.
  4. Feature branches - Work branches
  5. Hotfix branches - Same as feature branch but they are cut from and merged back to master. Also require merging to Develop

Developer Workflow

  1. Clone repository $ git clone https://<USERNAME>@bitbucket.org/sss_freshbyte/ediblestore.git
  2. Create and checkout "feature" branch
    • Manually: $(develop) git checkout -b FEATURE_BRANCH_NAME
    • Via Jira: Create Branch then checkout $> git fetch && git checkout FEATURE_BRANCH_NAME
  3. Code
  4. Commit
    • Stage Files $(FEATURE_BRANCH_NAME) git add .
    • Commit Files $(FEATURE_BRANCH_NAME) git commit -m "short descriptive message, can be changed later"
  5. Repeat steps 3,4 until feature is ready for code review
  6. Upon approved Pull Request squash and rebase rather than merging via BitBucket
    • Interactive Rebase - $(FEATURE_BRANCH_NAME) git rebase -i develop
    • git-flow
    • Update line actions
    • git-flow
    • Edit Message
    • git-flow
    • Now merge feature branch into develop
    • git-flow
    • You can see that develop's history is now linear
  7. Additional Information
    • Why Rebase?
    • If you feel your commit message should include additional information please keep it properly formatted
      • Separate subject from body with a blank line
      • Limit the subject line to 50 characters
      • Capitalize the subject line
      • Do not end the subject line with a period
      • Use the imperative mood in the subject line
      • Wrap the body at 72 characters
      • Use the body to explain what and why vs. how

Changelog

Recent changes can be viewed on the CHANGELOG.md

License

Copyright (c) Marc Means. This source code is licensed under the license.