package.json (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | {
"name": "homestead",
"version": "0.0.0",
"description": "An Indieweb content server implementation",
"main": "src/index.js",
"repository": "https://git.alanpearce.eu/homestead",
"author": "Alan Pearce <alan@alanpearce.eu>",
"license": "MIT",
"ava": {
"source": [
"src/**"
]
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
},
"scripts": {
"dev": "node-dev .",
"dev:testsite": "node-dev . test/testsite/",
"dev:assist": "auto-install --yarn",
"format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"precommit": "lint-staged",
"test": "ava 'test/**/*.test.js'",
"test:watch": "ava --watch 'test/**/*.test.js'"
},
"devDependencies": {
"auto-install": "^1.7.4",
"ava": "^0.22.0",
"cheerio": "1.0.0-rc.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"microformat-node": "^2.0.1",
"node-dev": "^3.1.3",
"prettier-standard": "^7.0.1",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"dependencies": {
"case": "^1.5.2",
"configly": "^4.1.0",
"gray-matter": "^3.0.7",
"highland": "^2.11.0",
"highlight.js": "^9.12.0",
"hyperfast": "^2.2.0",
"indent-string": "^3.1.0",
"koa": "^2.2.0",
"koa-helmet": "^3.2.0",
"koa-router": "^7.2.1",
"koa-send": "^4.1.0",
"markdown-it": "^8.3.1",
"predentation": "^0.1.2",
"toml": "^2.3.2"
},
"engines": {
"node": ">=8.0.0"
}
}
|