-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "resource-query-builder",
"version": "1.0.3",
"description": "A simple and elegant way to build urls for your REST API",
"scripts": {
"build": "babel src --out-dir lib --extensions '.ts'",
"tsc": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:chrisidakwo/resource-query-builder.git"
},
"moduleDirectories": [
"src"
],
"keywords": [
"javascript",
"react",
"typescript",
"api",
"rest",
"query",
"builder",
"laravel"
],
"authors": [
{
"name": "Chris Idakwo",
"github": "https://github.com/chrisidakwo"
},
{
"name": "Joel Male",
"github": "https://github.com/joelwmale"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisidakwo/resource-query-builder/issues"
},
"homepage": "https://github.com/chrisidakwo/resource-query-builder#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/eslint-parser": "^7.22.7",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.21.4",
"@babel/runtime": "^7.3.1",
"@types/jest": "^29.5.2",
"@types/qs": "^6.9.7",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"qs": "^6.7.0"
}
}