-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.15 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
54
55
{
"name": "ts-ulm-dsl",
"version": "2.0.0",
"description": "Typescript library for fetching emails from the temp mail service ulm-dsl.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write src/**/*.ts"
},
"files": [
"dist/**/*"
],
"keywords": [
"npm",
"ts",
"typescript",
"mail",
"javascript",
"library",
"ulm",
"dsl",
"ulm-dsl",
"temp"
],
"author": "Stimmler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DerStimmler/ts-ulm-dsl"
},
"bugs": {
"url": "https://github.com/DerStimmler/ts-ulm-dsl/issues"
},
"homepage": "https://github.com/DerStimmler/ts-ulm-dsl",
"devDependencies": {
"@types/jest": "29.5.3",
"@types/quoted-printable": "1.0.0",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.44.0",
"eslint-plugin-jest": "27.2.2",
"jest": "29.6.1",
"jest-junit": "16.0.0",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"dependencies": {
"fast-xml-parser": "4.2.5",
"quoted-printable": "1.0.1"
}
}