-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
115 lines (115 loc) · 3.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@herbsjs/herbs2knex",
"version": "2.1.1",
"description": "Domain entities javascript library.",
"main": "./src/herbs2knex.js",
"scripts": {
"test": "mocha --timeout 999999 --colors --recursive ./test/unit",
"test:integration:pg": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/pg",
"test:integration:mssql": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/mssql",
"test:integration:mysql": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/mysql",
"test:integration:sqlite": "mocha --timeout 999999 --colors --exit --recursive ./test/integration/sqlite",
"coverage-report": "nyc --reporter=html --reporter=text mocha --recursive ./test/unit --timeout 10000",
"coverage": "nyc --reporter=text mocha --recursive ./test --timeout 10000",
"semantic-release": "semantic-release",
"lint": "npx eslint \"**/*.{js,jsx}\" --quiet",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix",
"commit": "cz"
},
"directories": {
"lib": "src",
"test": "test",
"example": "examples"
},
"bugs": {
"url": "https://github.com/herbsjs/herbs2knex/issues/"
},
"engines": {
"node": ">= 14.x"
},
"keywords": [
"domain",
"entity",
"value object",
"DDD",
"clean architecture"
],
"author": "Enderson Costa",
"license": "MIT",
"homepage": "https://github.com/herbsjs/herbs2knex#readme",
"dependencies": {
"knex": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@herbsjs/herbs": "^2.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"bluebird": "^3.7.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"mssql": "^9.0.1",
"mysql2": "^2.3.3",
"nyc": "^15.1.0",
"pg": "^8.8.0",
"prettier": "^2.8.2",
"semantic-release": "^19.0.5",
"sqlite3": "^5.1.4",
"tedious": "^15.1.2"
},
"peerDependencies": {
"@herbsjs/herbs": "^2.0.0",
"bluebird": "^3.7.2",
"mssql": "^9.0.1",
"mysql2": "^2.3.2",
"pg": "^8.8.0",
"sqlite3": "^5.1.1",
"tedious": "^15.1.0"
},
"peerDependenciesMeta": {
"@herbsjs/herbs": {
"optional": false
},
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
},
"mssql": {
"optional": true
},
"mysql2": {
"optional": true
},
"bluebird": {
"optional": true
},
"tedious": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/herbsjs/herbs2knex.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}