-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "@jin-qu/jinqu",
"version": "2.0.0",
"description": "Querying infrastructure for JavaScript, with Linq style",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"linq",
"query",
"eval",
"typescript",
"iterable"
],
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jin-qu/jinqu"
},
"scripts": {
"lint": "eslint . --ignore-pattern \"coverage\" --ignore-pattern \"dist\"",
"test": "jest",
"cover": "jest --coverage",
"codecov": "jest --coverage && codecov",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"author": "Umut Özel",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/deep-equal": "^1.0.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"codecov": "^3.8.3",
"eslint": "9.20.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"class-transformer": "^0.5.1",
"deep-equal": "^2.2.3",
"jokenizer": "^1.0.0"
}
}