-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "@juriskop/swish-client",
"version": "1.0.2",
"description": "A JavaScript/TypeScript client for interfacing with SWISH supporting HTTP digest auth.",
"main": "index",
"scripts": {
"build": "tsc -p ./tsconfig.build.json && cp ./package.json ./dist/package.json && cp ./README.md ./dist/README.md",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Juriskop/SWISH-Client.git"
},
"keywords": [
"SWISH",
"Prolog",
"SWI Prolog",
"HTTP Client",
"JS",
"TS",
"HTTP Digest Auth"
],
"author": "Mathias Truschel <mtruschel@gmail.com>",
"contributors": [
"Timothy Gillespie <timothy@gillespie.eu>",
"Mathias Truschel <mtruschel@gmail.com>"
],
"license": "UNLICENSED",
"private": false,
"dependencies": {
"@juriskop/swish-node-digest-auth": "^1.0.4",
"@juriskop/axios-http-digest-auth": "^1.0.1",
"axios": "^0.27.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.6",
"babel-jest": "^28.1.3",
"dotenv": "^16.0.2",
"jest": "^28.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}