-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.3 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
{
"name": "cep-any",
"version": "4.1.3",
"description": "A modern and zero dependency cep consult lib",
"repository": {
"type": "git",
"url": "https://github.com/victorfernandesraton/cep-any"
},
"scripts": {
"test": "node --test",
"lint": "standard --fix ./src ./test ./bin",
"build:source": "node esbuild.config.js",
"build:types": "npx tsc",
"build": "rm -rf ./dist && npm run build:types && npm run build:source",
"prepublishOnly": "npm run build"
},
"keywords": [
"cep",
"cep-any",
"promisse.any",
"zip",
"zipcode",
"zipcode-brasil",
"correios",
"zip-br",
"CEP",
"cep-promise"
],
"author": {
"name": "Victor Fernandes Raton",
"email": "[email protected]",
"url": "https://vraton.dev"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.1.0",
"esbuild": "^0.23.0",
"standard": "^17.1.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">= 18"
},
"exports": {
".": {
"import": "./dist/esm.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/types.d.ts",
"contributors": [
{
"name": "Victor Raton",
"url": "https://github.com/victorfernandesraton"
}
],
"bin": {
"cep-any": "/bin/cep-any.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/victorfernandesraton/cep-any"
}