-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 922 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 922 Bytes
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
{
"name": "cep-scraper",
"version": "0.2.0",
"description": "JavaScript client to scrape data from Correios' BuscaCEP.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/"
},
"repository": {
"type": "git",
"url": "https://github.com/codigourbano/cep-scraper"
},
"keywords": [
"scraper",
"cep",
"postcode",
"brazil"
],
"author": "Miguel Peixe <miguel@cardume.art.br>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codigourbano/cep-scraper/issues"
},
"dependencies": {
"async": "^0.9.0",
"cheerio": "~0.18.0",
"iconv-lite": "~0.4.7",
"request": "~2.53.0"
},
"devDependencies": {
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"should": "^7.0.2"
}
}