https://github.com/casprwang/npm-starter
babel, jest setup for a fresh npm package
https://github.com/casprwang/npm-starter
babel jest jest-tests npm npm-module npm-package
Last synced: about 1 year ago
JSON representation
babel, jest setup for a fresh npm package
- Host: GitHub
- URL: https://github.com/casprwang/npm-starter
- Owner: casprwang
- License: mit
- Created: 2017-09-08T01:27:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-22T16:56:33.000Z (over 8 years ago)
- Last Synced: 2025-02-02T01:41:28.174Z (over 1 year ago)
- Topics: babel, jest, jest-tests, npm, npm-module, npm-package
- Language: JavaScript
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# npm-starter
> starter for a fresh npm package with babel and jest

## Installation
```
$ git clone https://github.com/wangsongiam/npm-starter.git
$ cd
```
## Entry points
### Development
```
./index.js
```
### Publish
```
./lib/index.js
```
## Scripts
### Testing (on watch)
```
$ npm run build
$ npm run dev
```
### Translating with Babel (on watch)
```
$ npm run build
```