-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "facturapi",
"version": "4.4.3",
"description": "Librería oficial de Facturapi. Crea CFDIs timbrados y enviados al SAT, XML y PDF",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"precommit": "lint-staged",
"build": "vite build && tsc --emitDeclarationOnly"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facturapi/facturapi-node.git"
},
"keywords": [
"cfdi",
"factura",
"sat",
"facturación",
"facturapi"
],
"author": "Facturación Espacial <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/facturapi/facturapi-node/issues"
},
"homepage": "https://github.com/facturapi/facturapi-node#readme",
"lint-staged": {
"*.{js,jsx,css}": [
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"cross-fetch": "^4.0.0",
"form-data": "^4.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/form-data": "^2.5.0",
"@types/node": "^20.12.12",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.1",
"lint-staged": "^15.2.4",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"semistandard": "^17.0.0",
"typescript": "^5.4.5",
"vite": "^4.0.0"
}
}