https://github.com/briwa/js-jest-pkg-starter
For those of you who wanted to create a quick, simple npm package in Javascript.
https://github.com/briwa/js-jest-pkg-starter
babel boilerplate coveralls javascript jest npm starter travis
Last synced: 2 months ago
JSON representation
For those of you who wanted to create a quick, simple npm package in Javascript.
- Host: GitHub
- URL: https://github.com/briwa/js-jest-pkg-starter
- Owner: briwa
- Created: 2019-03-04T14:45:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T17:15:10.000Z (over 3 years ago)
- Last Synced: 2025-08-09T09:05:51.503Z (11 months ago)
- Topics: babel, boilerplate, coveralls, javascript, jest, npm, starter, travis
- Language: JavaScript
- Size: 488 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# js-jest-pkg-starter
[](https://www.npmjs.com/package/js-jest-pkg-starter)
[](https://travis-ci.com/briwa/js-jest-pkg-starter)
[](https://coveralls.io/github/briwa/js-jest-pkg-starter?branch=master)

For those of you who wanted to create a quick, simple npm package in Javascript.
What's included in this starter pack:
- Javascript (Babel)
- Jest
- Travis CI
- Coveralls
- A very opinionated linting rule `standard`, feel free to change/remove this under `.eslintrc.js` to suit your own linting rules
## Getting started
- Clone this repo
- Write your own code and modify as needed
- ???
- Profit!
## Running tests
```bash
npm run test # Without coverage
npm run test -- --coverage # With coverage
```
## Build
```bash
npm run build # For production, outputs to ES5
```