-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "@jin-qu/linquest",
"version": "2.0.0-alpha1",
"description": "Remote Linq implementation with Jinqu infrastructure",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"linq",
"jinqu",
"query",
"ajax",
"typescript"
],
"files": [
"dist",
"index.ts",
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jin-qu/linquest"
},
"scripts": {
"lint": "eslint lib tests",
"test": "jest",
"cover": "jest --coverage",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"build": "npm run test && npm run lint && tsc",
"prepare": "npm run build"
},
"author": "Umut Özel",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"coveralls": "^3.1.1",
"jinqu-array-extensions": "^1.1.1",
"eslint": "^8.33.0",
"jest": "^29.4.2",
"jest-fetch-mock": "^3.0.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"jinqu": "^1.1.3",
"jinqu-fetch": "^1.1.1",
"jokenizer": "^0.4.5"
}
}