-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.07 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
{
"name": "@jymfony/typeorm-bundle",
"version": "0.1.0-dev",
"description": "Jymfony TypeORM Bundle",
"main": "index.js",
"scripts": {
"lint": "eslint src/",
"test": "node ./tests.js test/*Test.js test/**/*Test.js",
"coverage": "nyc npm test",
"coverage-html": "nyc --reporter=lcov npm test"
},
"keywords": [
"jymfony bundle",
"typeorm",
"orm",
"persistence",
"mysql",
"postgres",
"data mapper",
"active record"
],
"author": "Alessandro Chitolina <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@jymfony/autoloader": "^0.1.0-alpha.32",
"@jymfony/util": "^0.1.0-alpha.32"
},
"peerDependencies": {
"typeorm": "^0.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@jymfony/console": "^0.1.0-alpha.32",
"@jymfony/debug": "^0.1.0-alpha.32",
"@jymfony/dependency-injection": "^0.1.0-alpha.32",
"@jymfony/framework-bundle": "^0.1.0-alpha.32",
"@jymfony/http-server": "^0.1.0-alpha.32",
"@jymfony/kernel": "^0.1.0-alpha.32",
"@jymfony/logger": "^0.1.0-alpha.32",
"@jymfony/metadata": "^0.1.0-alpha.32",
"@jymfony/testing": "^0.1.0-alpha.32",
"eslint": "^8.57.1",
"glob": "^7.2.0",
"mocha": "^11.1.0",
"nyc": "^14.1.1",
"sqlite3": "^5.1.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Bundle.TypeORMBundle": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Bundle.TypeORMBundle.Fixtures": "fixtures/",
"Jymfony.Bundle.TypeORMBundle.Tests": "test/"
}
}
},
"nyc": {
"per-file": true,
"hookRequire": true,
"hookRunInContext": true,
"hookRunInThisContext": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/tests.js",
"**/*Interface.js",
"**/namespace-stub.js",
"**/fixtures/**",
"**/test/**"
],
"reporter": [
"text-summary",
"clover"
],
"report-dir": "./coverage"
}
}