encomendas-correios
Version:
Tracking of Correios packages
44 lines (43 loc) • 1.16 kB
JSON
{
"name": "encomendas-correios",
"version": "1.1.0",
"description": "Tracking of Correios packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/tkovs/correios-encomendas",
"author": "tkovs <joao.rodrigues@arapiraca.ufal.br>",
"license": "MIT",
"keywords": [
"Correios",
"Rastreio"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.17",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3"
}
}