-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "integreat-transporter-http",
"version": "1.3.0",
"description": "HTTP transporter for Integreat",
"keywords": [
"integreat",
"http",
"https"
],
"author": "Kjell-Morten Bratsberg Thorsen <kjellmorten@integreat.io> (https://integreat.io/)",
"license": "ISC",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./authenticator.js": {
"import": "./dist/authenticator/index.js",
"types": "./dist/authenticator/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build && c8 --reporter=text-summary ava --config ./ava-dist.config.cjs",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"test:watch": "npm run dev",
"dev": "ava --watch",
"build": "tsc",
"coverage": "c8 report",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm test"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"debug": "^4.3.4",
"got": "^13.0.0",
"query-string": "^8.1.0"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^5.0.3",
"@types/debug": "^4.1.12",
"@types/node": "^20.9.2",
"@types/sinon": "^17.0.1",
"integreat": "^1.4.6",
"nock": "^13.3.8",
"sinon": "^17.0.1"
}
}