{ "name": "htconvert", "version": "1.0.7", "description": "Convert .htaccess redirects to nginx.conf redirects", "main": "dist/htconvert.js", "bin": { "htconvert": "dist/cli.js" }, "scripts": { "prebuild": "rm -rf dist", "build": "babel -d dist src", "prebuild:map": "npm run prebuild", "build:map": "babel --source-maps=true -d dist src", "pretest": "npm run build:map", "test": "nyc ava test", "coverage": "nyc report --reporter=text-lcov | coveralls", "lint": "eslint src", "prepublish": "npm run build" }, "babel": { "presets": [ "es2015" ], "plugins": [ "add-module-exports" ] }, "eslintConfig": { "extends": "lukechilds", "rules": { "no-console": "off" } }, "repository": { "type": "git", "url": "git+https://github.com/lukechilds/htconvert.git" }, "keywords": [ "convert", ".htaccess", "apache", "redirect", "nginx", "nginx.conf" ], "author": "Luke Childs (http://lukechilds.co.uk)", "license": "MIT", "bugs": { "url": "https://github.com/lukechilds/htconvert/issues" }, "homepage": "https://github.com/lukechilds/htconvert#readme", "devDependencies": { "ava": "^0.19.1", "babel-cli": "^6.9.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.9.0", "child-process-promise": "^2.0.2", "coveralls": "^2.11.13", "eslint": "^3.19.0", "eslint-config-lukechilds": "^1.5.1", "nyc": "^11.0.2" }, "dependencies": { "commander": "^2.9.0", "fs-promise": "^2.0.3", "get-stdin": "^5.0.1" } }