UNPKG

1.41 kBJSONView Raw
1{
2 "name": "request-pure",
3 "version": "2.0.0",
4 "description": "Zero-dependency,lightweight http request client",
5 "keywords": [
6 "http",
7 "https",
8 "request",
9 "curl",
10 "wget",
11 "fetch",
12 "net",
13 "network",
14 "gzip",
15 "brotli",
16 "requests",
17 "human-friendly"
18 ],
19 "homepage": "https://github.com/islizeqiang/request-pure#readme",
20 "bugs": {
21 "url": "https://github.com/islizeqiang/request-pure/issues"
22 },
23 "repository": {
24 "type": "git",
25 "url": "git+https://github.com/islizeqiang/request-pure.git"
26 },
27 "license": "MIT",
28 "author": "islizeqiang",
29 "exports": {
30 ".": {
31 "require": "./dist/index.js",
32 "import": "./dist/index.es.js"
33 }
34 },
35 "main": "dist/index.js",
36 "module": "dist/index.es.js",
37 "types": "dist/index.d.ts",
38 "files": [
39 "dist"
40 ],
41 "scripts": {
42 "start": "siroc build --watch",
43 "build": "siroc build",
44 "release": "npm run build && standard-version",
45 "prepublishOnly": "pinst --disable",
46 "postpublish": "pinst --enable",
47 "_postinstall": "husky install"
48 },
49 "lint-staged": {
50 "**/*.{js,ts}": "eslint --ext .js,.ts",
51 "**/*.{js,ts,md,json}": [
52 "prettier --write"
53 ]
54 },
55 "devDependencies": {
56 "code-fabric": "^1.4.1",
57 "husky": "^6.0.0",
58 "lint-staged": "^11.0.0",
59 "pinst": "^2.1.6",
60 "siroc": "^0.11.0",
61 "standard-version": "^9.3.0"
62 }
63}