You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
{
|
|
"name": "htconvert",
|
|
"version": "1.0.1",
|
|
"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 <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/htconvert/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/htconvert#readme",
|
|
"devDependencies": {
|
|
"ava": "^0.15.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.9",
|
|
"eslint": "^2.11.1",
|
|
"eslint-config-lukechilds": "^1.5.1",
|
|
"nyc": "^6.4.4"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^2.9.0",
|
|
"fs-promise": "^0.5.0",
|
|
"get-stdin": "^5.0.1"
|
|
}
|
|
}
|
|
|