package.json
{
"name": "@8ar8az/gendiff",
"version": "1.0.0",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"description": "CLI utility for build and formated print the difference between two config files",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8ar8az/Gendiff-Hexlet.git"
},
"keywords": [
"cli",
"diff",
"config",
"ini",
"yml",
"json"
],
"jest": {
"collectCoverage": true,
"coverageReporters": ["lcov"],
"collectCoverageFrom": ["src/**/*.js"],
"coveragePathIgnorePatterns": ["<rootDir>/src/bin"]
},
"author": "8ar8az",
"license": "ISC",
"bugs": {
"url": "https://github.com/8ar8az/Gendiff-Hexlet/issues"
},
"homepage": "https://github.com/8ar8az/Gendiff-Hexlet#readme",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-lodash": "^3.1.0",
"jest": "^23.6.0"
},
"dependencies": {
"commander": "^2.18.0",
"ini": "^1.3.5",
"js-yaml": "^3.12.0",
"lodash": "^4.17.11"
}
}