package.json
{
"name": "cne",
"version": "1.0.2",
"description": "Get fuel price from cne api",
"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": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lgaticaq/node-cne.git"
},
"keywords": [
"cne",
"fuel",
"api"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/node-cne/issues"
},
"homepage": "https://github.com/lgaticaq/node-cne#readme",
"dependencies": {},
"devDependencies": {
"chai": "4.3.4",
"eslint": "5.16.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.23.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "4.1.0",
"generate-changelog": "1.8.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"lint-staged": "7.3.0",
"mocha": "5.2.0",
"nock": "10.0.6",
"prettier-standard": "8.0.1"
},
"eslintConfig": {
"extends": "standard",
"env": {
"mocha": true
},
"rules": {
"no-console": [
"error"
]
}
},
"eslintIgnore": [
"coverage",
"example.js"
],
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
],
"test/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
},
"tonicExampleFilename": "example.js",
"token": "6M5jaVAzPS",
"renovate": {
"automerge": "minor",
"extends": [
":library"
]
}
}