hosting
Version:
The easiest way to deploy websites
79 lines (78 loc) • 1.44 kB
JSON
{
"name": "hosting",
"version": "0.0.2",
"description": "The easiest way to deploy websites",
"homepage": "https://github.com/fordnox/hosting",
"author": {
"name": "fordnox",
"email": "andrius.putna@gmail.com",
"url": "https://github.com/fordnox/hosting"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"static",
"hosting",
"server",
"html5",
"file",
"directory",
"deploy"
],
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"prettier": "^1.19.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-config-xo": "^0.27.2",
"jest": "^24.8.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "git@github.com:fordnox/hosting.git",
"jest": {
"testEnvironment": "node"
},
"license": "Apache-2.0"
}