forked from domasx2/sequelize-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "sequelize-fixtures",
"version": "1.0.2",
"description": "sequelize fixture loader",
"main": "index.js",
"scripts": {
"release": "release-it",
"test": "./node_modules/.bin/mocha tests"
},
"engines": {
"node": "*"
},
"keywords": [
"sequelize",
"fixtures"
],
"dependencies": {
"bluebird": "^2.4.2",
"glob": "~7.0.5",
"js-yaml": "^3.13.1",
"object-assign": "^4.0.1"
},
"devDependencies": {
"mocha": "*",
"release-it": "^12.3.0",
"sequelize": "^5.0.0",
"should": "*",
"sinon": "^1.14.1",
"sqlite3": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/domasx2/sequelize-fixtures.git"
},
"bugs": {
"url": "https://github.com/domasx2/sequelize-fixtures/issues"
},
"author": "Domas Lapinskas <[email protected]>",
"license": "BSD",
"readmeFilename": "README.md",
"release-it": {
"git": {
"commit": true,
"tag": true,
"push": true
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}