forked from herbsjs/herbs2knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "herbs2knex",
"version": "1.0.6",
"description": "Domain entities javascript library.",
"main": "./src/herbs2knex.js",
"scripts": {
"test": "mocha --timeout 999999 --colors --recursive ./test",
"testdb-pg": "mocha --timeout 999999 --colors --exit --recursive ./testdb/pg",
"testdb-mssql": "mocha --timeout 999999 --colors --exit --recursive ./testdb/mssql"
},
"directories": {
"lib": "src",
"test": "test",
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/herbsjs/herbs2knex.git"
},
"bugs": {
"url": "https://github.com/herbsjs/herbs2knex/issues/"
},
"engines": {
"node": ">= 12.3.0"
},
"keywords": [
"domain",
"entity",
"value object",
"DDD",
"clean architecture"
],
"author": "Enderson Costa",
"license": "MIT",
"homepage": "https://github.com/herbsjs/herbs2knex#readme",
"dependencies": {
"gotu": "^1.0.9",
"knex": "^0.21.15"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pg": "^8.5.1",
"mssql": "^6.3.0",
"dotenv": "^8.2.0"
}
}