|
1 | 1 | {
|
2 | 2 | "name": "jsonapi-store-relationaldb",
|
3 |
| - "version": "3.0.0", |
| 3 | + "version": "4.0.0", |
4 | 4 | "description": "Relational data store for jsonapi-server.",
|
5 | 5 | "keywords": [
|
6 | 6 | "json:api",
|
|
24 | 24 | "dependencies": {
|
25 | 25 | "async": "2.5.0",
|
26 | 26 | "debug": "3.1.0",
|
27 |
| - "joi": "11.1.1", |
| 27 | + "joi": "11.3.4", |
28 | 28 | "lodash": "4.17.4",
|
29 | 29 | "semver": "5.4.1",
|
30 |
| - "sequelize": "4.13.1" |
| 30 | + "sequelize": "4.13.8" |
31 | 31 | },
|
32 | 32 | "devDependencies": {
|
33 | 33 | "blanket": "1.2.3",
|
|
42 | 42 | "jsonapi-server": "3.2.1",
|
43 | 43 | "lokka": "1.7.0",
|
44 | 44 | "lokka-transport-http": "1.6.1",
|
45 |
| - "mocha": "3.5.3", |
| 45 | + "mocha": "4.0.1", |
46 | 46 | "mocha-lcov-reporter": "1.3.0",
|
47 | 47 | "mocha-performance": "0.1.1",
|
48 | 48 | "mysql2": "1.4.2",
|
|
53 | 53 | "v8-profiler": "5.7.0"
|
54 | 54 | },
|
55 | 55 | "scripts": {
|
56 |
| - "test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && ./node_modules/mocha/bin/mocha --timeout 20000 -R spec ./test/*.js'", |
| 56 | + "test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && mocha --exit --timeout 20000 -R spec ./test/*.js'", |
57 | 57 | "start": "node example/server.js",
|
58 |
| - "coveralls": "mocha --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js", |
59 |
| - "coverage": "mocha --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true", |
| 58 | + "coveralls": "mocha --exit --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js", |
| 59 | + "coverage": "mocha --exit --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true", |
60 | 60 | "complexity": "plato -r -d complexity lib",
|
61 | 61 | "performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/*.js",
|
62 | 62 | "lint": "eslint ./example/*.js ./lib/* ./test/*.js --quiet && echo '✔ All good!'",
|
|
0 commit comments