|
4 | 4 | "description": "Domain entities javascript library.", |
5 | 5 | "main": "./src/herbs2knex.js", |
6 | 6 | "scripts": { |
7 | | - "test": "mocha --timeout 999999 --colors --recursive ./test", |
8 | | - "testdb-pg": "mocha --timeout 999999 --colors --exit --recursive ./testdb/pg", |
9 | | - "testdb-mssql": "mocha --timeout 999999 --colors --exit --recursive ./testdb/mssql", |
10 | | - "testdb-mysql": "mocha --timeout 999999 --colors --exit --recursive ./testdb/mysql", |
| 7 | + "test": "mocha --timeout 999999 --colors --recursive ./test/unit", |
| 8 | + "test:integration:pg": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/pg", |
| 9 | + "test:integration:mssql": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/mssql", |
| 10 | + "test:integration:mysql": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/mysql", |
11 | 11 | "coverage-report": "nyc --reporter=html --reporter=text mocha --recursive ./test --timeout 10000", |
12 | 12 | "coverage": "nyc --reporter=text mocha --recursive ./test --timeout 10000", |
13 | 13 | "semantic-release": "semantic-release", |
|
50 | 50 | "@semantic-release/github": "^7.2.3", |
51 | 51 | "@semantic-release/npm": "^7.1.3", |
52 | 52 | "@semantic-release/release-notes-generator": "^9.0.3", |
| 53 | + "bluebird": "^3.7.2", |
53 | 54 | "cz-conventional-changelog": "^3.3.0", |
54 | 55 | "dotenv": "^10.0.0", |
55 | | - "bluebird": "^3.7.2", |
56 | 56 | "eslint": "^8.0.0", |
57 | 57 | "eslint-config-prettier": "^8.3.0", |
58 | 58 | "eslint-config-standard": "^16.0.3", |
|
61 | 61 | "eslint-plugin-prettier": "^4.0.0", |
62 | 62 | "eslint-plugin-promise": "^5.1.0", |
63 | 63 | "eslint-plugin-standard": "^4.1.0", |
| 64 | + "lodash": "^4.17.21", |
64 | 65 | "mocha": "^9.0.1", |
| 66 | + "mssql": "^7.2.1", |
| 67 | + "mysql2": "^2.3.2", |
65 | 68 | "nyc": "^15.1.0", |
| 69 | + "pg": "^8.7.1", |
66 | 70 | "prettier": "^2.3.1", |
67 | 71 | "semantic-release": "^17.4.4", |
68 | | - "pg": "^8.7.1", |
69 | | - "tedious": "^13.1.0", |
70 | | - "mssql": "^7.2.1", |
71 | | - "mysql2": "^2.3.2" |
| 72 | + "tedious": "^13.1.0" |
72 | 73 | }, |
73 | 74 | "peerDependencies": { |
74 | 75 | "pg": "^8.7.1", |
|
0 commit comments