-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.07 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
{
"name": "@beyonk/http",
"version": "12.0.1",
"description": "An isomorphic http client for Svelte apps",
"main": "lib/entrypoint.js",
"module": "lib/entrypoint.js",
"type": "module",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/beyonk-adventures/http.git"
},
"devDependencies": {
"@beyonk/eslint-config": "^4.2.0",
"@beyonk/esm": "^4.0.1",
"@hapi/code": "^5.3.1",
"eslint": "^7.2.0",
"mocha": "^9.0.2",
"sinon": "^7.5.0"
},
"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"
},
"keywords": [
"isomorphic",
"fetch",
"sapper",
"sveltekit",
"svelte",
"http-client",
"http",
"https"
],
"author": "Antony Jones",
"license": "MIT",
"volta": {
"node": "18.15.0"
},
"packageManager": "[email protected]"
}