https://github.com/andre-araujo/package-boilerplate
A simple boilerplate for npm modules
https://github.com/andre-araujo/package-boilerplate
Last synced: 2 months ago
JSON representation
A simple boilerplate for npm modules
- Host: GitHub
- URL: https://github.com/andre-araujo/package-boilerplate
- Owner: andre-araujo
- Created: 2017-09-19T02:39:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-07T17:24:15.000Z (over 7 years ago)
- Last Synced: 2025-01-31T13:43:48.228Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Npm package boilerplate.
Npm package boilerplate is a simple scafold to create npm modules.
It's a easy way to publish npm modules with the latest javascript features, eslint, and test ready.
## Usage
- clone the project
- modify package.json as you want
- `npm install`## Building
`npm run build`
## Testing
Testing is the simple way to make sure that your code is working!
Npm package boilerplate comes with `jest` as a test tool, to make sure that tests will work, make sure to run `npm install` before.
Test names should be in the following pattern:
`*.spec.js``npm test`
## Publishing
`npm publish`