-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
47
48
49
50
51
52
53
54
{
"name": "fatura",
"version": "0.2.1",
"description": "GİB eFatura.gov.tr Fatura Oluşturucu",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"declarations/"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.4.0",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.config.integration.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/f/fatura.git"
},
"keywords": [
"fatura",
"gib",
"efatura",
"earsiv"
],
"author": "Fatih Kadir Akın <fatihkadirakin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/f/fatura/issues"
},
"homepage": "https://github.com/f/fatura#readme"
}