UNPKG

bip

Version:

Get balance of bip card (Chile)

85 lines (84 loc) 2.33 kB
{ "name": "bip", "version": "3.0.2", "description": "Get balance of bip card (Chile)", "main": "src", "scripts": { "lint": "eslint .", "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'", "precommit": "lint-staged", "pretest": "npm run lint -s && npm run format -s", "test": "istanbul cover _mocha", "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish", "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish", "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish" }, "engines": { "node": ">=8" }, "repository": { "type": "git", "url": "https://github.com/lgaticaq/bip.git" }, "keywords": [ "bip", "transantiago", "metro" ], "author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)", "license": "MIT", "bugs": { "url": "https://github.com/lgaticaq/bip/issues" }, "homepage": "https://github.com/lgaticaq/bip#readme", "dependencies": { "cheerio": "1.0.0-rc.2" }, "devDependencies": { "chai": "4.1.2", "eslint": "5.6.0", "eslint-config-standard": "11.0.0", "eslint-plugin-import": "2.14.0", "eslint-plugin-node": "7.0.1", "eslint-plugin-promise": "3.8.0", "eslint-plugin-standard": "4.0.0", "generate-changelog": "1.7.1", "husky": "0.14.3", "istanbul": "1.1.0-alpha.1", "lint-staged": "7.3.0", "mocha": "5.2.0", "nock": "9.6.1", "prettier-standard": "8.0.1" }, "eslintConfig": { "extends": "standard", "rules": { "no-console": [ "error" ] } }, "eslintIgnore": [ "example.js", "coverage" ], "lint-staged": { "src/**/*.js": [ "eslint --fix", "prettier-standard", "git add" ], "test/**/*.js": [ "eslint --fix", "prettier-standard", "git add" ] }, "renovate": { "automerge": "minor", "extends": [ ":library" ] }, "tonicExampleFilename": "example.js" }