forked from FacturAPI/facturapi-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "facturapi",
"version": "3.2.0",
"description": "Librería oficial de Facturapi. Crea CFDIs timbrados y enviados al SAT, XML y PDF",
"main": "index.js",
"scripts": {
"precommit": "lint-staged"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javorosas/facturapi-node.git"
},
"keywords": [
"cfdi",
"factura"
],
"author": "Javo Rosas <javier@facturapi.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/javorosas/facturapi-node/issues"
},
"homepage": "https://github.com/javorosas/facturapi-node#readme",
"lint-staged": {
"*.{js,jsx,css}": [
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"axios": "^0.24.0",
"form-data": "^3.0.0",
"safe-buffer": "^5.2.1"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^7.1.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"semistandard": "^16.0.0"
}
}