This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@nodecfdi/cfdiutils-elements",
"version": "1.4.2",
"description": "Librería para contener las estructuras de datos que componen un cfdi",
"keywords": [
"cfdi",
"estructura",
"struct",
"xml"
],
"private": false,
"author": "OcelotlStudio <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/cfdiutils-elements.js",
"module": "dist/cfdiutils-elements.mjs",
"unpkg": "dist/cfdiutils-elements.global.js",
"browser": "dist/cfdiutils-elements.global.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky install",
"lint": "eslint --fix --ext .js,.ts .",
"lint:check": "eslint --ext .js,.ts .",
"format": "prettier --write \"**/*.{js,ts,json}\"",
"format:check": "prettier --check \"**/*.{js,ts,json}\"",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "pnpm prebuild && rollup -c && pnpm gen:types && rimraf dist/dts",
"prebuild": "rimraf dist",
"gen:docs": "rimraf docs && typedoc --options typedoc.json",
"gen:types": "api-extractor run --local",
"release": "pnpm run build && pnpm changeset publish"
},
"repository": "https://github.com/nodecfdi/cfdiutils-elements",
"bugs": {
"url": "https://github.com/nodecfdi/cfdiutils-elements/issues"
},
"homepage": "https://github.com/nodecfdi/cfdiutils-elements",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.5",
"@microsoft/api-extractor": "^7.35.3",
"@mxssfd/typedoc-theme": "^1.1.1",
"@nrsk/config-conventional": "^1.0.0",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/is-ci": "^3.0.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-istanbul": "^0.29.8",
"@xmldom/xmldom": "^0.8.8",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"ts-mixer": "^6.0.3",
"typedoc": "^0.25.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.29.8"
},
"dependencies": {
"@nodecfdi/cfdiutils-common": "^1.2.4"
},
"commitlint": {
"extends": [
"@nrsk/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"engines": {
"node": ">= 16"
},
"browserslist": [
"defaults",
"not IE 11"
]
}