-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 882 Bytes
/
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
{
"name": "typescript-odata-query-builder",
"version": "1.4.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"chai": "^4.3.10",
"mocha": "^10.7.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc",
"test": "mocha tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antwonthegreat/odata-query-builder.git"
},
"keywords": [
"odata",
"query",
"typescript"
],
"author": "antwonthegreat",
"license": "MIT",
"bugs": {
"url": "https://github.com/antwonthegreat/odata-query-builder/issues"
},
"homepage": "https://github.com/antwonthegreat/odata-query-builder#readme",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"/dist"
]
}