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.

66 lines
1.5 KiB

9 years ago
{
"name": "htconvert",
9 years ago
"version": "1.0.0",
9 years ago
"description": "Convert .htaccess redirects to nginx.conf redirects",
9 years ago
"main": "dist/htconvert.js",
9 years ago
"bin": {
"htconvert": "dist/cli.js"
},
9 years ago
"scripts": {
9 years ago
"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",
"lint": "eslint src",
9 years ago
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
9 years ago
},
"eslintConfig": {
"extends": "lukechilds",
"rules": {
"no-console": "off"
}
},
9 years ago
"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"
},
9 years ago
"homepage": "https://github.com/lukechilds/htconvert#readme",
"devDependencies": {
9 years ago
"ava": "^0.15.1",
9 years ago
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.11.1",
"eslint-config-lukechilds": "^1.5.1",
"nyc": "^6.4.4"
9 years ago
},
"dependencies": {
"commander": "^2.9.0",
"fs-promise": "^0.5.0",
"get-stdin": "^5.0.1"
9 years ago
}
9 years ago
}