-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
140 lines (140 loc) · 3.57 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "orange-orm",
"version": "4.4.2",
"main": "./src/index.js",
"browser": "./src/client/index.mjs",
"bin": {
"orange-orm": "bin/rdb.js"
},
"title": "Orange ORM",
"description": "Object Relational Mapper",
"types": "./src/index.d.ts",
"keywords": [
"typescript orm",
"orm",
"sql",
"mySql",
"SQLite",
"MySQL",
"mssql",
"Microsoft Sql Server",
"PostgreSql",
"Postgres",
"pg",
"sap",
"sapase",
"Oracle",
"rdb",
"Orange ORM",
"active record"
],
"authors": [
"Lars-Erik Roald <[email protected]>"
],
"license": "ISC",
"codeOfConduct": "https://github.com/alfateam/orange-orm/blob/master/docs/CODE_OF_CONDUCT.md",
"contributing": "https://github.com/alfateam/orange-orm/blob/master/CONTRIBUTING.md",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/lroal"
},
"scripts": {
"test": "vitest run --threads=false",
"coverage": "vitest run --coverage.enabled --coverage.reporter='text-summary' --threads=false",
"testw": "vitest --threads=false update",
"tscheck": "tsc ./src/index.d.ts --module commonjs --target es2022 --noEmit true --strict true --esModuleInterop true",
"concat": "node ./src/client/merge.js",
"build": "rollup -c ./src/client/rollup.config.js && npm run concat",
"lint": "eslint ./",
"fix": "eslint ./ --fix",
"owasp": "owasp-dependency-check --project \"MY_PROJECT\" --scan \"package-lock.json\" --exclude \"dependency-check-bin\" --out \"owasp\" --format HTML",
"beta": "publish --tag beta"
},
"dependencies": {
"@lroal/on-change": "^4.0.2",
"@tediousjs/connection-string": "^0.4.1",
"@types/express": "^4.17.13",
"@types/oracledb": "^6.0.4",
"@types/tedious": "^4.0.14",
"ajv": "^6.10.2",
"axios": "^1.6.2",
"deferred": "^0.7.5",
"fast-json-patch": "^3.1.1",
"findup-sync": "^5.0.0",
"glob": "^10.3.4",
"module-definition": "^4.0.0",
"node-cls": "^1.0.5",
"promise": "^8.0.3",
"rfdc": "^1.2.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"msnodesqlv8": "^4.1.0",
"mysql2": "^2.2.5 || ^3.9.4",
"oracledb": "^6.3.0",
"pg": "^8.5.1",
"pg-native": "^3.0.0",
"pg-query-stream": "^3.3.2",
"sqlite3": "^5.0.2",
"tedious": "^15.1.2 || ^16.0.0 || ^18.1.0"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
},
"pg-query-stream": {
"optional": true
},
"mysql2": {
"optional": true
},
"sqlite3": {
"optional": true
},
"pg-native": {
"optional": true
},
"msnodesqlv8": {
"optional": true
},
"tedious": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"@vitest/coverage-v8": "^0.34.1",
"cors": "^2.8.5",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.1.7",
"express": "^4.18.2",
"msnodesqlv8": "^4.1.0",
"mysql2": "^3.9.4",
"oracledb": "^6.3.0",
"owasp-dependency-check": "^0.0.21",
"pg": "^8.5.1",
"pg-query-stream": "^3.3.2",
"rollup": "^2.52.7",
"sqlite3": "^5.0.2",
"tedious": "^18.2.0",
"typescript": "^5.4.5",
"vitest": "^0.34.1"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:alfateam/orange-orm.git"
},
"homepage": "https://orange-orm.io",
"jshintConfig": {
"asi": true,
"eqnull": true,
"undef": true,
"node": true
}
}