-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.18 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
{
"name": "@beyonk/http",
"version": "12.2.0",
"description": "An isomorphic http client for Svelte apps",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/beyonk-adventures/http.git"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@beyonk/eslint-config": "^9.0.3",
"@hapi/code": "^5.3.1",
"eslint": "^9.29.0",
"mocha": "^9.0.2",
"sinon": "^7.5.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"eslintConfig": {
"extends": "@beyonk",
"globals": {
"beforeEach": true,
"afterEach": true,
"describe": true,
"context": true,
"it": true
}
},
"scripts": {
"test": "mocha './!(node_modules)/**/**.+(spec).js'",
"lint": "eslint lib --ext .js",
"build": "tsup"
},
"keywords": [
"isomorphic",
"fetch",
"sapper",
"sveltekit",
"svelte",
"http-client",
"http",
"https"
],
"author": "Antony Jones",
"license": "MIT",
"volta": {
"node": "18.15.0"
},
"packageManager": "pnpm@10.12.0"
}