https://github.com/pgilad/package-json-previewer
Web interface to preview your normalized package.json or metadata using normalize-package-data
https://github.com/pgilad/package-json-previewer
Last synced: about 1 year ago
JSON representation
Web interface to preview your normalized package.json or metadata using normalize-package-data
- Host: GitHub
- URL: https://github.com/pgilad/package-json-previewer
- Owner: pgilad
- License: mit
- Created: 2014-10-31T17:08:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T17:35:33.000Z (about 11 years ago)
- Last Synced: 2025-02-05T16:15:34.026Z (over 1 year ago)
- Language: CoffeeScript
- Homepage: https://pgilad.github.io/package-json-previewer/
- Size: 1.46 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# package-json-previewer [](https://travis-ci.org/pgilad/package-json-previewer)
> Web interface to preview your normalized package.json or metadata using [normalize-package-data](https://github.com/npm/normalize-package-data)
This package is a web interface that uses [browserify](http://browserify.org/) in order to create a live preview of how your `package.json` will be transformed.
NPM transforms your `package.json` using a module named [normalize-package-data](https://github.com/npm/normalize-package-data), which mutates several parameters.
This previewer will let you quickly see how your file will be transformed.
Check out the [live site](https://pgilad.github.io/package-json-previewer/)

## Install
```sh
# clone repo
$ git clone https://github.com/pgilad/package-json-previewer
# change to cloned directory
$ cd package-json-previewer
# install dependencies
$ npm install
```
## Usage
```sh
# build, watch & run server with live-reload
$ gulp
# just compile
$ gulp build
# launch server with live reload
$ gulp connect
# open browser at localhost:1337
```
## Test
Test using Mocha/Zombie.js/Coffee:
```sh
$ npm test
```
## License
MIT @[Gilad Peleg](http://giladpeleg.com)