-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.7 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ts-flex-query",
"version": "1.5.0",
"description": "Flexible and type-safe data queries",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"**",
"!**/*.js.map",
"!**/*.spec.d.ts",
"!**/*.spec.js"
],
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./expressions": {
"types": "./expressions/index.d.ts",
"default": "./expressions/index.js"
},
"./functions": {
"types": "./functions/index.d.ts",
"default": "./functions/index.js"
},
"./odata": {
"types": "./odata/index.d.ts",
"default": "./odata/index.js"
},
"./operators": {
"types": "./operators/index.d.ts",
"default": "./operators/index.js"
},
"./types": {
"types": "./types/index.d.ts",
"default": "./types/index.js"
}
},
"scripts": {
"build": "npm run ps -- if (Test-Path ./lib) { Remove-Item ./lib -Recurse -Force } && npm run tsc -- -p ./tsconfig.json && npm run ps -- Copy-Item CHANGELOG.md, LICENSE, package.json, README.md lib",
"build-and-test": "npm run build && jest",
"build-with-samples": "npm run build && npm run tsc -- -p ./samples/tsconfig.json && npm run tsc-5.5 -- -p ./samples/tsconfig.json && npm run tsc-5.4 -- -p ./samples/tsconfig.json && npm run tsc-5.3 -- -p ./samples/tsconfig.json && npm run tsc-5.2 -- -p ./samples/tsconfig.json && npm run tsc-5.1 -- -p ./samples/tsconfig.json && npm run tsc-5.0 -- -p ./samples/tsconfig.json",
"do-publish": "npm run prepare-publish && npm publish ./lib",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"prepare-publish": "npm run build-with-samples && npm run test && npm run lint",
"ps": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command",
"test": "jest",
"tsc-5.0": "node ./node_modules/typescript-5.0/bin/tsc",
"tsc-5.1": "node ./node_modules/typescript-5.1/bin/tsc",
"tsc-5.2": "node ./node_modules/typescript-5.2/bin/tsc",
"tsc-5.3": "node ./node_modules/typescript-5.3/bin/tsc",
"tsc-5.4": "node ./node_modules/typescript-5.4/bin/tsc",
"tsc-5.5": "node ./node_modules/typescript-5.5/bin/tsc",
"tsc": "node ./node_modules/typescript/bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/black-comb/ts-flex-query.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"data",
"query",
"odata"
],
"author": "Marko Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/black-comb/ts-flex-query/issues"
},
"homepage": "https://github.com/black-comb/ts-flex-query#readme",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/jest": "~29.5.14",
"@types/lodash": "^4.17.13",
"axios": "^1.7.7",
"eslint": "~9.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-blackcomb-defaults": "~0.3.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"jest": "~29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-5.0": "npm:typescript@~5.0.4",
"typescript-5.1": "npm:typescript@~5.1.6",
"typescript-5.2": "npm:typescript@~5.2.2",
"typescript-5.3": "npm:typescript@~5.3.3",
"typescript-5.4": "npm:typescript@~5.4.5",
"typescript-5.5": "npm:typescript@~5.5.4",
"typescript-eslint": "^8.14.0"
},
"peerDependencies": {
"lodash": "~4.17.21",
"rxjs": "^7.8.1"
},
"overrides": {
"eslint-plugin-deprecation": {
"eslint": ">=9"
},
"eslint-plugin-import": {
"eslint": ">=9"
}
}
}