-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "@exasol/exasol-driver-ts",
"version": "0.2.0",
"description": "Exasol SQL Driver",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest --selectProjects unit-dom unit-node --coverage",
"test:dom": "jest --selectProjects unit-dom --coverage",
"test:node": "jest --selectProjects unit-node --coverage",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts --fix .",
"lint:ci": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --write .",
"itest": "jest --selectProjects itest-dom itest-node --coverage",
"itest:dom": "jest --selectProjects itest-dom --coverage",
"itest:node": "jest --selectProjects itest-node --coverage"
},
"dependencies": {
"generic-pool": "^3.9.0",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.3",
"@trendyol/jest-testcontainers": "^2.1.1",
"@types/jest": "^29.5.4",
"@types/node-forge": "^1.3.11",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.0.2",
"rollup": "^3.28.1",
"testcontainers": "9.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"ws": "^8.17.1"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/exasol/exasol-driver-ts.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/exasol/exasol-driver-ts/issues"
},
"homepage": "https://github.com/exasol/exasol-driver-ts#readme"
}