-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
61 lines (61 loc) · 2.04 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
55
56
57
58
59
60
61
{
"name": "sequelize-mocking",
"version": "2.0.1",
"description": "A Sequelize extension to deal with mocking for tests",
"main": "index.js",
"files": [
"index.js",
"lib",
"lib-es5"
],
"scripts": {
"delete": "node node_modules/rimraf/bin.js",
"checkstyle": "npm run delete ./target/eslint-reporter-checkstyle.xml && node node_modules/eslint/bin/eslint.js --config=.eslintrc --output-file ./target/eslint-reporter-checkstyle.xml --format checkstyle ./lib",
"generate-shrinkwrap": "npm prune && npm shrinkwrap --only=prod",
"test": "node ./node_modules/mocha/bin/mocha --recursive --ui bdd --colors ./test",
"bumping": "node ./node_modules/npmversion/bin/npmversion",
"bump-release": "npm test && npm run bumping -- --unpreid --git-create-branch",
"bump-major": "npm test && npm run bumping -- --git-create-branch --increment major",
"bump-minor": "npm test && npm run bumping -- --git-create-branch --increment minor",
"bump-patch": "npm test && npm run bumping -- --git-create-branch --increment patch",
"bump-major-beta": "npm run bumping -- --increment major --preid beta",
"bump-minor-beta": "npm run bumping -- --increment minor --preid beta",
"bump-patch-beta": "npm run bumping -- --increment patch --preid beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rochejul/sequelize-mocking.git"
},
"keywords": [
"Sequelize",
"mocking",
"fixtures",
"test",
"mocha"
],
"author": "Julien Roche",
"license": "MIT",
"bugs": {
"url": "https://github.com/rochejul/sequelize-mocking/issues"
},
"homepage": "https://github.com/rochejul/sequelize-mocking#readme",
"dependencies": {
"lodash": "4.17.13",
"sequelize-fixtures": "0.10.0",
"sqlite3": "4.0.8"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"chai": "4.0.2",
"eslint": "4.7.1",
"mocha": "5.2.0",
"mysql2": "1.3.5",
"npmversion": "1.7.0",
"rimraf": "2.6.1",
"sequelize": "5.8.7",
"sinon": "2.3.7"
}
}