-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.06 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
{
"name": "@digitalia/fatturapa",
"description": "TypeScript library for bidirectional (XML-JS/JSON-XML) conversion and validation of italian electronic invoices (FatturaElettronica)",
"version": "1.3.1",
"author": "Danilo Panaro <[email protected]>",
"license": "EUPL-1.2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint",
"prepare": "tsdx build",
"pretty": "prettier",
"pretty:w": "npx prettier --write \"{src,test}/**/*.ts\"",
"pretty:c": "npx prettier \"./{src,test}/**/*.ts\" --check",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"fast-xml-parser": "^3.17.4",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.transform": "^4.6.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.7.0",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.transform": "^4.6.6",
"@types/yup": "^0.29.9",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"size-limit": "^4.7.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "yarn pretty:w && tsdx lint"
}
},
"size-limit": [
{
"path": "dist/fatturapa.cjs.production.min.js",
"limit": "40 KB"
},
{
"path": "dist/fatturapa.esm.js",
"limit": "40 KB"
}
],
"homepage": "https://github.com/DigItaliaPL/fatturapa#readme",
"repository": {
"type": "git",
"url": "https://github.com/DigItaliaPL/fatturapa.git"
},
"keywords": [
"FatturaPA",
"Javascript",
"FatturaElettronica",
"TypeScript",
"Electronic Invoice"
],
"bugs": {
"url": "https://github.com/DigItaliaPL/fatturapa/issues"
}
}