-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.79 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
56
57
58
59
60
61
62
63
{
"name": "letter-generator",
"version": "2.2.1",
"description": "Generate letters (plain text or PDF) from templates. Used by the Datenanfragen.de project.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/datenanfragen/letter-generator",
"author": "The Datenanfragen.de project <dev@datenanfragen.de> (https://www.datenanfragen.de)",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "hi@bn.al",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "me@lorenz-sieben.com",
"url": "https://lorenz-sieben.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/datenanfragen/letter-generator/issues"
},
"scripts": {
"prepack": "rm -rf dist && yarn build",
"build": "tsc",
"watch": "tsc -w",
"test": "echo 'TODO: No test specified yet.'"
},
"files": [
"/dist"
],
"dependencies": {
"pdfmake": "^0.2.5"
},
"devDependencies": {
"@types/pdfmake": "^0.1.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"husky": "4.3.7",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,scss,json}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
}
}