-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "cep-address-finder",
"version": "1.3.5",
"description": "Uma simples e poderosa biblioteca para pesquisa de endereços brasileiros.",
"main": "dist/cep-address-finder.js",
"browser": "dist/cep-address-finder-browser.js",
"types": "dist/cep-address-finder.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build-package": "rollup --config",
"build": "yarn clean && yarn build-package",
"test": "jest",
"test-coverage": "jest --coverage"
},
"files": [
"dist"
],
"keywords": [
"cep",
"zipcode",
"endereço",
"endereco",
"address",
"brasil",
"brazil"
],
"author": "Mateus Araujo",
"license": "ISC",
"homepage": "https://github.com/mateus-araujo/cep-address-finder",
"repository": {
"type": "git",
"url": "https://github.com/mateus-araujo/cep-address-finder"
},
"dependencies": {
"node-fetch": "^2.6.1",
"unfetch": "^4.2.0"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-jest": "^26.6.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
}
}