-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 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
{
"name": "@nepaul/rest-url-parser",
"version": "1.0.4",
"description": "A axios which support RESTful style and all of the original axios APIs.",
"main": "dist/rest-url-parser.cjs.js",
"module": "dist/rest-url-parser.esm.js",
"browser": "dist/rest-url-parser.min.js",
"unpkg": "dist/rest-url-parser.global.min.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .ts src",
"format": "prettier --write --parser typescript src",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nepaul/rest-url-parser.git"
},
"keywords": [
"axios",
"RESTful",
"rest",
"API",
"https",
"HTTP",
"http-client",
"Request",
"http-request",
"fetch",
"node-fetch",
"got",
"superagent",
"needle",
"sse",
"url"
],
"author": "[neapul] (xs.nepaul@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nepaul/rest-url-parser/issues"
},
"homepage": "https://github.com/nepaul/rest-url-parser#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-terser": "^0.4.3",
"@swc-node/jest": "^1.4.3",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^29.5.0",
"lint-staged": "^12.3.7",
"rollup": "^2.70.1"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"eslint --cache",
"prettier --parser=typescript --write"
]
}
}