forked from Soontao/light-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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.12.0",
"description": "OData(V2/V4) Client",
"unpkg": "./lib/odata-client-umd.js",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/http-string-parser": "^0.0.29",
"@types/jest": "^26.0.20",
"@types/mockjs": "^1.0.3",
"@types/node": "^14.14.24",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"mockjs": "^1.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.20.1",
"webpack-cli": "^4.5.0"
},
"typings": "lib/index.d.ts",
"scripts": {
"build:umd": "webpack",
"prebuild": "rimraf lib",
"build": "tsc && npm run build:umd",
"test": "jest",
"lint": "tsc --noEmit && eslint src/**/*.*",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"release": "standard-version --no-verify && git push --follow-tags origin master",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@newdash/newdash": "^5.17.1",
"@odata/parser": "^0.2.3",
"@types/node-fetch": "^2.5.8",
"fetch-cookie": "^0.11.0",
"http-string-parser": "^0.0.6",
"node-fetch": "^2.6.1",
"uuid": "^8.3.2"
},
"homepage": "https://github.com/Soontao/light-odata",
"author": {
"name": "Theo Sun",
"email": "[email protected]",
"url": "https://github.com/Soontao"
},
"main": "lib/index.js",
"keywords": [
"OData",
"OData Client",
"Rest"
],
"repository": "Soontao/light-odata",
"license": "MIT"
}