-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b41246d
Showing
6 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules/ | ||
.DS_Store | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
registry=http://registry.npmjs.org/ | ||
save-exact=true | ||
progress=false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]> © 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 <[email protected]> | ||
|
||
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>", | ||
"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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
'use strict' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', () => { | ||
}) | ||
}) |