@alexssmusica/node-pdf-nfe 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +72 -70
package/package.json
CHANGED
|
@@ -1,70 +1,72 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@alexssmusica/node-pdf-nfe",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "Modulo que auxilia na geração da Danfe NFe e NFCe.",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Alex Santos de Souza"
|
|
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
|
-
"@semantic-release/
|
|
48
|
-
"@semantic-release/
|
|
49
|
-
"@semantic-release/
|
|
50
|
-
"@semantic-release/
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@types/
|
|
54
|
-
"@types/
|
|
55
|
-
"@types/
|
|
56
|
-
"@
|
|
57
|
-
"@
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"eslint
|
|
63
|
-
"prettier": "
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@alexssmusica/node-pdf-nfe",
|
|
3
|
+
"version": "1.2.3",
|
|
4
|
+
"description": "Modulo que auxilia na geração da Danfe NFe e NFCe.",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Alex Santos de Souza",
|
|
10
|
+
"url": "https://github.com/Alexssmusica/node-pdf-nfe/#readme",
|
|
11
|
+
"email": "alexssmusica@gmail.com"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"/lib",
|
|
15
|
+
"package.json",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"NFe",
|
|
20
|
+
"NFCe",
|
|
21
|
+
"Danfe"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/Alexssmusica/node-pdf-nfe.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://danfenfeonline.com.br/gerar-danfe",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"release": "npm run prettier && npm run build && node release.js",
|
|
30
|
+
"clean-lib": "npx rimraf lib",
|
|
31
|
+
"build": "npm run clean-lib && tsc -p tsconfig.json && npm run copy-fonts",
|
|
32
|
+
"prettier": "prettier src/**/*.{js,ts} --write",
|
|
33
|
+
"publish": "npm publish --access public",
|
|
34
|
+
"type": "tsc --project tsconfig.json",
|
|
35
|
+
"copy-fonts": "copyfiles -u 1 src/**/*.ttf lib/",
|
|
36
|
+
"test-pdf": "ts-node-dev --respawn --transpile-only ./tests/pdf.test.ts",
|
|
37
|
+
"test": "ts-node ./tests/pdf.test.ts"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"bwip-js": "4.2.0",
|
|
41
|
+
"date-fns": "2.29.3",
|
|
42
|
+
"pdfkit": "0.15.0",
|
|
43
|
+
"qrcode": "1.5.4",
|
|
44
|
+
"xml2js": "0.6.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
48
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
49
|
+
"@semantic-release/git": "10.0.1",
|
|
50
|
+
"@semantic-release/github": "11.0.1",
|
|
51
|
+
"@semantic-release/npm": "12.0.1",
|
|
52
|
+
"@semantic-release/release-notes-generator": "14.0.3",
|
|
53
|
+
"@types/date-fns": "2.6.0",
|
|
54
|
+
"@types/node": "18.15.2",
|
|
55
|
+
"@types/pdfkit": "0.12.12",
|
|
56
|
+
"@types/qrcode": "1.5.5",
|
|
57
|
+
"@types/xml2js": "0.4.14",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "4.22.0",
|
|
59
|
+
"@typescript-eslint/parser": "4.22.0",
|
|
60
|
+
"copyfiles": "2.4.1",
|
|
61
|
+
"dotenv": "^16.4.7",
|
|
62
|
+
"eslint": "7.25.0",
|
|
63
|
+
"eslint-config-prettier": "8.3.0",
|
|
64
|
+
"eslint-plugin-prettier": "3.4.0",
|
|
65
|
+
"prettier": "2.2.1",
|
|
66
|
+
"rimraf": "5.0.0",
|
|
67
|
+
"semantic-release": "^24.2.3",
|
|
68
|
+
"ts-node": "10.9.1",
|
|
69
|
+
"ts-node-dev": "^2.0.0",
|
|
70
|
+
"typescript": "4.9.5"
|
|
71
|
+
}
|
|
72
|
+
}
|