Skip to content
This repository was archived by the owner on Apr 7, 2023. It is now read-only.

Commit 58bf039

Browse files
authored
Merge pull request #1 from seas-computing/develop
Initial wrapper implementation
2 parents 565940b + d7d4759 commit 58bf039

File tree

8 files changed

+1075
-464
lines changed

8 files changed

+1075
-464
lines changed

.eslintrc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@
1818
"@typescript-eslint"
1919
],
2020
"rules": {
21+
"@typescript-eslint/comma-dangle": [
22+
"error",
23+
{
24+
"arrays": "always-multiline",
25+
"objects": "always-multiline",
26+
"imports": "always-multiline",
27+
"exports": "always-multiline",
28+
"functions": "never"
29+
}
30+
],
2131
"@typescript-eslint/indent": [
2232
"error",
2333
2

package-lock.json

Lines changed: 254 additions & 453 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "oracle-wrapper",
2+
"name": "@seas-computing/oracle-wrapper",
33
"version": "0.0.0",
44
"description": "A lightweight wrapper about the oracledb driver",
55
"main": "lib/index.js",
@@ -30,24 +30,24 @@
3030
},
3131
"devDependencies": {
3232
"@types/mocha": "^8.2.0",
33-
"@types/node": "^14.14.20",
33+
"@types/node": "^14.14.28",
3434
"@types/oracledb": "^5.1.0",
3535
"@types/sinon": "^9.0.10",
36-
"@typescript-eslint/eslint-plugin": "^4.12.0",
37-
"@typescript-eslint/parser": "^4.12.0",
36+
"@typescript-eslint/eslint-plugin": "^4.15.1",
37+
"@typescript-eslint/parser": "^4.15.1",
3838
"codecov": "^3.8.1",
39-
"eslint": "^7.17.0",
40-
"eslint-config-airbnb-typescript": "^12.0.0",
39+
"eslint": "^7.20.0",
40+
"eslint-config-airbnb-typescript": "^12.3.1",
4141
"eslint-import-resolver-node": "^0.3.4",
4242
"eslint-plugin-import": "^2.22.1",
4343
"eslint-plugin-mocha": "^8.0.0",
44-
"mocha": "^8.2.1",
44+
"mocha": "^8.3.0",
4545
"nyc": "^15.1.0",
4646
"oracledb": "^5.1.0",
47-
"sinon": "^9.2.3",
47+
"sinon": "^9.2.4",
4848
"ts-node": "^9.1.1",
49-
"typedoc": "^0.20.13",
50-
"typescript": "^4.1.3"
49+
"typedoc": "^0.20.25",
50+
"typescript": "^4.1.5"
5151
},
5252
"dependencies": {}
5353
}

0 commit comments

Comments
 (0)