-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 1.74 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
70
71
72
73
74
75
76
77
{
"name": "popsicle",
"version": "12.1.2",
"description": "Advanced HTTP requests in node.js and browsers",
"keywords": [
"request",
"http",
"middleware",
"node",
"ajax",
"browser",
"promise"
],
"homepage": "https://github.com/serviejs/popsicle",
"bugs": {
"url": "https://github.com/serviejs/popsicle/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/serviejs/popsicle.git"
},
"license": "MIT",
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"main": "dist/index.js",
"browser": {
"./dist/node.js": "./dist/browser.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/",
"logo.svg"
],
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"size": "size-limit",
"specs": "ts-scripts specs",
"test": "ts-scripts test && npm run size"
},
"dependencies": {
"popsicle-content-encoding": "^1.0.0",
"popsicle-cookie-jar": "^1.0.1",
"popsicle-redirects": "^1.1.0",
"popsicle-transport-http": "^1.1.0",
"popsicle-transport-xhr": "^2.0.0",
"popsicle-user-agent": "^1.0.0",
"servie": "^4.3.3",
"throwback": "^4.1.0"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@size-limit/preset-small-lib": "^11.0.0",
"@types/node": "^20.9.3",
"@vitest/coverage-v8": "^0.34.6",
"size-limit": "^11.0.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "./dist/index.js",
"limit": "3.3 kB"
}
]
}