0.1.3 • Published 7 years ago

toml-checker v0.1.3

Weekly downloads
10
License
MIT
Repository
github
Last release
7 years ago

toml-checker

Simple library to validate TOML files

Installation

To install the package globally:

npm install -g toml-checker

To install as a dev dependency:

npm install --save-dev toml-checker

Usage

Run from command line:

If you installed as a global package: toml-checker <path-to-toml-file>

If you installed locally: node node_modules/toml-checker/bin/toml-checker.js <path-to-toml-file>

Run from package.json

  1. Add a script in your package.json that calls toml-checker
"scripts": {
    "test": "NODE_ENV=test mocha --timeout 5000 test/*.js",
    "check-toml": "toml-checker <path-to-toml-file>"
  }
  1. Run the script: npm run check-toml
0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago