forked from jaystack/odata-v4-parser
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "@odata/parser",
"version": "0.2.14",
"description": "OData(V4) Parser",
"main": "lib/index",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/Soontao/odata-v4-parser"
},
"contributors": [
{
"name": "Theo Sun",
"email": "theo.sun@outlook.com",
"url": "https://github.com/Soontao"
},
{
"name": "JayStack Enterprises",
"url": "http://jaystack.com"
}
],
"license": "MIT",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc",
"lint": "eslint src/** --fix",
"coverage": "npm test -- --coverage --no-cache",
"typedoc": "typedoc --name \"OData v4 Filter Parser\" --excludeExternals --excludeNotExported --hideGenerator --excludeExternals --excludePrivate --out docs src",
"test": "jest",
"prepublishOnly": "npm run test && npm run build",
"release": "npx standard-version --no-verify && git push --follow-tags origin main"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^14.18.40",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"prettier": "2.3.2",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"dependencies": {
"@newdash/newdash": "^5.21.4",
"@odata/metadata": "^0.2.8"
},
"keywords": [
"odata",
"odata(v4)",
"uri parser"
]
}