neocatecumenal 1.0.0
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 +22 -0
- package/src/index.ts +0 -0
- package/src/types/cidade.ts +7 -0
- package/src/types/estado.ts +8 -0
- package/src/types/pais.ts +5 -0
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "neocatecumenal",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Libs compartilhadas entre app do CNC",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/leonardocintra/neocatecumenal.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"neocatecumenal"
|
|
15
|
+
],
|
|
16
|
+
"author": "Leonardo Nascimento Cintra",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/leonardocintra/neocatecumenal/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/leonardocintra/neocatecumenal#readme"
|
|
22
|
+
}
|
package/src/index.ts
ADDED
|
File without changes
|