daggerok-names
v0.0.1
Published
An open source project example - get names
Readme
open source project 
- run
npm init - add LICENSE, README.md and CODE_OF_CONDUCT.md files
- implement your library
- add tess:
npm i mocha assert - add linting:
npm eslint,./node_modules/.bin/eslint --init - add CI:
touch .travis.yml - add code coverage:
npm i nyc - add git hook (prepush) to do not brake anything:
npm i husky(ignoe them with:git push ... --no-verify) - configure file matters for the npm registry:
npm i pack, see "files" in package.json file - share library:
npm version,npm login,npm publish
