Skip to content

Commit b41246d

Browse files
committed
feat(package): initial commit
0 parents  commit b41246d

File tree

6 files changed

+142
-0
lines changed

6 files changed

+142
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
.DS_Store
3+
npm-debug.log

.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
registry=http://registry.npmjs.org/
2+
save-exact=true
3+
progress=false
4+

README.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# seedquelize
2+
3+
> A seeder for Sequelize
4+
5+
[![NPM][npm-icon] ][npm-url]
6+
7+
[![Build status][ci-image] ][ci-url]
8+
[![semantic-release][semantic-image] ][semantic-url]
9+
[![js-standard-style][standard-image]][standard-url]
10+
11+
### Small print
12+
13+
Author: Jim Cummins <[email protected]> © 2017
14+
15+
16+
17+
License: MIT - do anything with the code, but don't blame me if it does not work.
18+
19+
Support: if you find any problems with this module, email / tweet /
20+
[open issue](https://github.com/jimthedev/seedquelize/issues) on Github
21+
22+
## MIT License
23+
24+
Copyright (c) 2017 Jim Cummins <[email protected]>
25+
26+
Permission is hereby granted, free of charge, to any person
27+
obtaining a copy of this software and associated documentation
28+
files (the "Software"), to deal in the Software without
29+
restriction, including without limitation the rights to use,
30+
copy, modify, merge, publish, distribute, sublicense, and/or sell
31+
copies of the Software, and to permit persons to whom the
32+
Software is furnished to do so, subject to the following
33+
conditions:
34+
35+
The above copyright notice and this permission notice shall be
36+
included in all copies or substantial portions of the Software.
37+
38+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
40+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
42+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
43+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
44+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
45+
OTHER DEALINGS IN THE SOFTWARE.
46+
47+
[npm-icon]: https://nodei.co/npm/seedquelize.svg?downloads=true
48+
[npm-url]: https://npmjs.org/package/seedquelize
49+
[ci-image]: https://travis-ci.org/jimthedev/seedquelize.svg?branch=master
50+
[ci-url]: https://travis-ci.org/jimthedev/seedquelize
51+
[semantic-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
52+
[semantic-url]: https://github.com/semantic-release/semantic-release
53+
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
54+
[standard-url]: http://standardjs.com/

package.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"name": "seedquelize",
3+
"description": "A seeder for Sequelize",
4+
"version": "1.0.0",
5+
"author": "Jim Cummins <[email protected]>",
6+
"bugs": "https://github.com/jimthedev/seedquelize/issues",
7+
"config": {
8+
"pre-git": {
9+
"commit-msg": "simple",
10+
"pre-commit": [
11+
"npm prune",
12+
"npm run deps",
13+
"npm test",
14+
"npm run ban"
15+
],
16+
"pre-push": [
17+
"npm run secure",
18+
"npm run license",
19+
"npm run ban -- --all",
20+
"npm run size"
21+
],
22+
"post-commit": [],
23+
"post-merge": []
24+
}
25+
},
26+
"engines": {
27+
"node": ">=6"
28+
},
29+
"files": [
30+
"src/*.js",
31+
"!src/*-spec.js"
32+
],
33+
"homepage": "https://github.com/jimthedev/seedquelize#readme",
34+
"keywords": [
35+
" migration",
36+
" seed",
37+
" seeder",
38+
" sequelize",
39+
"model"
40+
],
41+
"license": "MIT",
42+
"main": "src/",
43+
"publishConfig": {
44+
"registry": "http://registry.npmjs.org/"
45+
},
46+
"repository": {
47+
"type": "git",
48+
"url": "https://github.com/jimthedev/seedquelize.git"
49+
},
50+
"scripts": {
51+
"ban": "ban",
52+
"deps": "deps-ok && dependency-check .",
53+
"issues": "git-issues",
54+
"license": "license-checker --production --onlyunknown --csv",
55+
"lint": "standard --verbose --fix src/*.js",
56+
"pretest": "npm run lint",
57+
"secure": "nsp check",
58+
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
59+
"test": "npm run unit",
60+
"unit": "mocha src/*-spec.js"
61+
},
62+
"devDependencies": {
63+
"ban-sensitive-files": "1.9.0",
64+
"dependency-check": "2.7.0",
65+
"deps-ok": "1.2.0",
66+
"git-issues": "1.3.1",
67+
"license-checker": "8.0.3",
68+
"mocha": "3.2.0",
69+
"nsp": "2.6.2",
70+
"pre-git": "3.12.0",
71+
"standard": "8.6.0"
72+
}
73+
}

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
'use strict'

src/seedquelize-spec.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
'use strict'
2+
3+
/* global describe, it */
4+
describe('empty test suite', () => {
5+
it('write this test', () => {
6+
})
7+
})

0 commit comments

Comments
 (0)