-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "sro",
"version": "0.0.0-development",
"description": "Friendly Correios SRO API wrapper and command-line utility",
"keywords": [
"correios",
"ect",
"sro",
"postal",
"mail",
"package",
"tracking",
"shipping",
"brazil"
],
"homepage": "https://github.com/rbardini/sro",
"bugs": {
"url": "https://github.com/rbardini/sro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rbardini/sro"
},
"license": "MIT",
"author": "Rafael Bardini",
"type": "module",
"exports": "./index.js",
"bin": "./bin/sro.js",
"files": [
"bin/*",
"src/*",
"index.js"
],
"scripts": {
"format": "prettier .",
"prepare": "husky",
"test": "tap --allow-incomplete-coverage --node-arg=--experimental-json-modules"
},
"dependencies": {
"chalk": "^5.0.0",
"cli-table": "^0.3.0",
"commander": "^12.0.0",
"node-fetch": "^3.0.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"husky": "9.1.4",
"lint-staged": "15.2.8",
"nock": "13.5.4",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.1",
"tap": "21.0.0"
},
"engines": {
"node": ">=20"
}
}