-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "facturacionelectronicapy-setapi",
"version": "1.0.29",
"description": "Módulo NodeJs para enviar el Archivo XML Firmado para la Facturación Electrónica en Paraguay a la SET",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "",
"preversion": "",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/marcosjara/facturacionelectronicapy-setapi.git"
},
"bugs": {
"url": "https://github.com/marcosjara/facturacionelectronicapy-setapi/issues"
},
"homepage": "https://github.com/marcosjara/facturacionelectronicapy-setapi#readme",
"files": [
"dist/**/*"
],
"keywords": [
"Envío de XML",
"XML",
"Facturación Electrónica",
"Facturación Electrónica Paraguay",
"SET"
],
"author": "Marcos Jara",
"maintainers": [
],
"license": "MIT",
"dependencies": {
"axios": "^0.22.0",
"https": "^1.0.0",
"jszip": "^3.7.1",
"node-forge": "^0.10.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/node-forge": "^0.10.5",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.4.1",
"source-map-support": "^0.5.16",
"supertest": "^6.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
}
}