forked from bilaleren/e-fatura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "e-fatura",
"version": "1.0.4",
"description": "e-Arşiv üzerinden fatura oluşturur, faturaları listeler, fatura(ları) imzalar ve daha fazlasını yapar.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/bilaleren/e-fatura",
"files": [
"dist"
],
"keywords": [
"e-arşiv",
"e-fatura",
"js e-arşiv",
"js e-fatura",
"javascript e-arşiv",
"javascript e-fatura"
],
"scripts": {
"prebuild": "rm -rf dist && yarn lint && yarn test",
"build": "NODE_ENV=production rollup -c",
"start:dev": "NODE_ENV=development rollup -c",
"lint": "eslint \"./src/**/*.ts\" --quiet",
"lint:fix": "eslint \"./src/**/*.ts\" --fix",
"format": "prettier --write \"./src/**/*.ts\"",
"test": "jest --config jest.config.js --detectOpenHandles",
"test:watch": "yarn run test --watchAll",
"build:docker-image": "bash ./scripts/docker-image.sh build",
"run:docker-container": "bash ./scripts/docker-image.sh up"
},
"dependencies": {
"axios": "0.27.2",
"crypto": "^1.0.1",
"lodash.merge": "^4.6.2",
"number-to-text": "^0.3.9",
"uuid": "^9.0.0"
},
"peerDependencies": {
"axios": ">=0.27.2",
"puppeteer": ">=19.4.0",
"uuid": ">=8.0.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.0",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.15.5",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"e-fatura": "link:./dist",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"puppeteer": "^19.8.3",
"rollup": "^3.20.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-node-externals": "^5.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}