Skip to content

Commit

Permalink
feat(package): initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jimthedev committed Jan 14, 2017
0 parents commit b41246d
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.DS_Store
npm-debug.log
4 changes: 4 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
registry=http://registry.npmjs.org/
save-exact=true
progress=false

54 changes: 54 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# seedquelize

> A seeder for Sequelize
[![NPM][npm-icon] ][npm-url]

[![Build status][ci-image] ][ci-url]
[![semantic-release][semantic-image] ][semantic-url]
[![js-standard-style][standard-image]][standard-url]

### Small print

Author: Jim Cummins <jimthedev@gmail.com> © 2017



License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet /
[open issue](https://github.com/jimthedev/seedquelize/issues) on Github

## MIT License

Copyright (c) 2017 Jim Cummins <jimthedev@gmail.com>

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

[npm-icon]: https://nodei.co/npm/seedquelize.svg?downloads=true
[npm-url]: https://npmjs.org/package/seedquelize
[ci-image]: https://travis-ci.org/jimthedev/seedquelize.svg?branch=master
[ci-url]: https://travis-ci.org/jimthedev/seedquelize
[semantic-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
[semantic-url]: https://github.com/semantic-release/semantic-release
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
[standard-url]: http://standardjs.com/
73 changes: 73 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"name": "seedquelize",
"description": "A seeder for Sequelize",
"version": "1.0.0",
"author": "Jim Cummins <jimthedev@gmail.com>",
"bugs": "https://github.com/jimthedev/seedquelize/issues",
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"npm run ban"
],
"pre-push": [
"npm run secure",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/jimthedev/seedquelize#readme",
"keywords": [
" migration",
" seed",
" seeder",
" sequelize",
"model"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/jimthedev/seedquelize.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"pretest": "npm run lint",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha src/*-spec.js"
},
"devDependencies": {
"ban-sensitive-files": "1.9.0",
"dependency-check": "2.7.0",
"deps-ok": "1.2.0",
"git-issues": "1.3.1",
"license-checker": "8.0.3",
"mocha": "3.2.0",
"nsp": "2.6.2",
"pre-git": "3.12.0",
"standard": "8.6.0"
}
}
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'use strict'
7 changes: 7 additions & 0 deletions src/seedquelize-spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'use strict'

/* global describe, it */
describe('empty test suite', () => {
it('write this test', () => {
})
})

0 comments on commit b41246d

Please sign in to comment.