-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "abap-adt-api",
"version": "6.2.0",
"description": "Interface to Abap Developer Tools webservice",
"outDir": "build",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "tsc",
"test": "jest"
},
"keywords": [
"ABAP",
"ADT"
],
"author": "Marcello Urbani",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcellourbani/abap-adt-api"
},
"dependencies": {
"axios": "^1.7.2",
"fast-xml-parser": "^4.4.0",
"fp-ts": "^2.16.7",
"html-entities": "^2.5.2",
"io-ts": "^2.2.21",
"io-ts-reporters": "^2.0.1",
"sprintf-js": "^1.1.3"
},
"devDependencies": {
"@types/html-entities": "^1.3.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@types/sprintf-js": "^1.1.2",
"@types/tough-cookie": "^4.0.2",
"client-oauth2": "^4.3.3",
"eslint": "^8.14.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}