Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- 2017-10-09 - v4.0.0
- 2017-10-09 - Optimised Sequelize UUID column type for ids.
- 2017-10-02 - v3.0.0
- 2017-10-02 - Allow injecting a Sequelize instance.
- 2017-10-02 - Fix npm scripts on MS Windows.
Expand Down
177 changes: 39 additions & 138 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsonapi-store-relationaldb",
"version": "3.0.0",
"version": "4.0.0",
"description": "Relational data store for jsonapi-server.",
"keywords": [
"json:api",
Expand All @@ -24,10 +24,10 @@
"dependencies": {
"async": "2.5.0",
"debug": "3.1.0",
"joi": "11.1.1",
"joi": "11.3.4",
"lodash": "4.17.4",
"semver": "5.4.1",
"sequelize": "4.13.1"
"sequelize": "4.13.8"
},
"devDependencies": {
"blanket": "1.2.3",
Expand All @@ -42,7 +42,7 @@
"jsonapi-server": "3.2.1",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "3.5.3",
"mocha": "4.0.1",
"mocha-lcov-reporter": "1.3.0",
"mocha-performance": "0.1.1",
"mysql2": "1.4.2",
Expand All @@ -53,10 +53,10 @@
"v8-profiler": "5.7.0"
},
"scripts": {
"test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && ./node_modules/mocha/bin/mocha --timeout 20000 -R spec ./test/*.js'",
"test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && mocha --exit --timeout 20000 -R spec ./test/*.js'",
"start": "node example/server.js",
"coveralls": "mocha --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "mocha --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true",
"coveralls": "mocha --exit --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "mocha --exit --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true",
"complexity": "plato -r -d complexity lib",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/*.js",
"lint": "eslint ./example/*.js ./lib/* ./test/*.js --quiet && echo '✔ All good!'",
Expand Down