-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@slackbyte/odata-sql-connect",
"version": "0.0.1",
"description": "A high speed OData V4.01 SQL Connector which provides functionality to convert the various types of OData segments into SQL query statements.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:report": "jest --coverage",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"clean": "rimraf ./dist ",
"build": "npm run clean && tsc -p tsconfig.build.json",
"dev": "npm run build && node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udaysingh236/odata-sql-connect.git"
},
"keywords": [
"odata",
"v4.01",
"sql",
"connecter",
"odata-server",
"node",
"typescript",
"parser"
],
"author": "Uday Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/udaysingh236/odata-sql-connect/issues"
},
"homepage": "https://github.com/udaysingh236/odata-sql-connect#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@slackbyte/odata-query-parser": "^0.0.5"
}
}