-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
72 lines (72 loc) · 2.18 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
{
"name": "@facturacr/atv-sdk",
"version": "1.2.12",
"description": "Librería (SDK) de Javascript/NodeJS para acceder al API de Administración Tributaria Virtual (ATV) del Ministerio de Hacienda.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"directories": {
"doc": "doc",
"example": "examples",
"test": "__test__"
},
"scripts": {
"test": "npx jest --no-coverage",
"test:cov": "npx jest",
"dev": "dotenv -- nodemon -e ts,graphql -x 'yarn lint & ts-node -r tsconfig-paths/register src/index.ts'",
"build": "rm -r dist; tspc -p tsconfig-prod.json",
"lint": "eslint --ext .ts, --ignore-path .gitignore .",
"test:createAndSend": "yarn ts-node -r tsconfig-paths/register --require dotenv/config examples/createAndSend.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facturacr/facturar-costa-rica-lib.git"
},
"keywords": [
"factura",
"hacienda"
],
"author": "Minor Arrieta",
"license": "MIT",
"bugs": {
"url": "https://github.com/facturacr/facturar-costa-rica-lib/issues"
},
"homepage": "https://github.com/facturacr/facturar-costa-rica-lib#readme",
"devDependencies": {
"@types/jest": "^29.5",
"@types/node": "^14.14.39",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"dotenv-cli": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7",
"jest-xml-matcher": "^1.2.0",
"nodemon": "^2.0.19",
"ts-jest": "^29.1",
"ts-node": "10.9.1",
"ts-patch": "^3.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.4",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"@peculiar/webcrypto": "^1.1.6",
"axios": "^0.28.0",
"fast-xml-parser": "^3.19.0",
"node-forge": "^1.3.0",
"xadesjs": "^2.1.2",
"xmldom-alpha": "^0.1.28"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18"
}
}