-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "lib-restql",
"version": "1.0.17",
"description": "A flexible and efficient REST API query language for frontend and backend",
"main": "dist/RestQL.js",
"types": "dist/RestQL.d.ts",
"scripts": {
"build": "tsc",
"eslint": "eslint '**/*.{ts,js}'",
"start": "tsc --watch",
"test": "vitest"
},
"keywords": [
"rest",
"api",
"query",
"language",
"graphql",
"typescript",
"frontend",
"backend"
],
"author": "Mohamed Sidani",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:universal-web-js/rest-ql.git"
},
"bugs": {
"url": "https://github.com/universal-web-js/rest-ql/issues"
},
"homepage": "https://github.com/universal-web-js/rest-ql#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"typescript": "^4.5.3",
"vitest": "^2.0.5"
},
"dependencies": {
"lodash.get": "4.4.2",
"node-fetch": "^3.2.0"
},
"engines": {
"node": ">=14.0.0"
}
}