This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
84 lines (84 loc) · 2.26 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
{
"name": "correios-brasil",
"version": "3.0.6",
"description": "Módulo completo consultar informações sobre o CEP, calcular o preço e os prazos das entregas das encomendas e também realizar o seu rastreio",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "ts-node ./lib/index.ts",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"declarations": "tsc -emitDeclarationOnly --d",
"build": "rimraf dist && mkdirp dist && rollup -c --bundleConfigAsCjs",
"postbuild": "dts-bundle-generator -o ./dist/index.d.ts ./lib/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"lint": "eslint . --ext .ts"
},
"keywords": [
"entrega",
"entregas",
"preço",
"prazo",
"prazos",
"correio",
"correios",
"frete",
"rastreio",
"rastrear",
"encomendas",
"encomenda",
"cep",
"ibge",
"viacep",
"soap",
"xml",
"json",
"de",
"correios-api",
"rastreio de pacotes",
"rastreamento",
"sro"
],
"repository": {
"type": "git",
"url": "https://github.com/FinotiLucas/Correios-Brasil"
},
"author": "Lucas Lima Finoti <lucas.finoti@protonmail.com>",
"license": "Apache License 2.0",
"dependencies": {
"axios": "^1.4.0",
"iconv-lite": "^0.6.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.7",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"types": "dist/index.d.js"
}