-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "@odata/client",
"version": "2.21.10",
"description": "OData(V2/V4) Client",
"unpkg": "./lib/odata-client-umd.js",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc && npm run build:umd",
"build:umd": "npx esbuild@latest src/index.ts --bundle --minify --target=node18 --format=iife --outfile=lib/odata-client-umd.js --global-name=OData",
"test": "jest --silent",
"lint": "tsc --noEmit && eslint src/**/*.*",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"release": "npx standard-version --no-verify",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@newdash/newdash": "^5.23.1",
"@odata/parser": "^0.2.14",
"@types/node-fetch": "^2.6.11",
"fetch-cookie": "^3.0.1",
"http-string-parser": "^0.0.6",
"node-fetch": "^2.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/http-string-parser": "0.0.33",
"@types/jest": "29.5.12",
"@types/mockjs": "1.0.10",
"@types/node": "20.12.11",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint": "8.57.0",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.4.5"
},
"overrides": {
"glob-parent": ">=6.0.2",
"json5": ">=2.2.3"
},
"homepage": "https://github.com/Soontao/light-odata",
"author": {
"name": "Theo Sun",
"email": "theo.sun@outlook.com",
"url": "https://github.com/Soontao"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"main": "lib/index.js",
"keywords": [
"OData",
"OData Client",
"Rest"
],
"repository": "Soontao/light-odata",
"license": "MIT"
}