-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 KB
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
{
"name": "resource-endpoint",
"version": "5.0.0",
"license": "MIT",
"description": "A simple resource wrapper for Axios and collection of useful Mixins for building Laravel APIs.",
"author": "Eric Dowell <github@ericdowell.com> (https://ericdowell.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/ericdowell/resource-endpoint.git"
},
"bugs": {
"url": "https://github.com/ericdowell/resource-endpoint/issues"
},
"homepage": "https://github.com/ericdowell/resource-endpoint#readme",
"keywords": [
"json",
"api",
"promise",
"client",
"wrapper",
"http",
"simple",
"endpoint",
"resource",
"crud",
"laravel",
"axios"
],
"main": "lib/resource-endpoint.js",
"types": "lib/",
"scripts": {
"prebuild": "npm run clean && npm run lint -- --quiet",
"build": "npm run build:ts && npm run build:webpack",
"build:ts": "cross-env NODE_ENV=production tsc",
"build:webpack": "cross-env NODE_ENV=production webpack",
"clean": "rm -fr lib && echo '> removed lib folder'",
"prelint": "tsc --noEmit",
"lint": "eslint src --ext .ts --ext .tsx",
"lint:fix": "npm run lint -- --fix --quiet",
"lint:staged": "lint-staged",
"pretest": "npm run lint",
"prepare": "husky install",
"test": "cross-env TS_JEST_DISABLE_VER_CHECKER=true jest"
},
"lint-staged": {
"*.ts?(x)": "npm run lint:fix"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.3.2",
"qs": "^6.10.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^16.11.33",
"@types/qs": "^6.9.7",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"source-map-loader": "^4.0.0",
"ts-jest": "^28.0.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
}
}