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
|
{
"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",
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
},
"scripts": {
"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.19.1",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier-standard": "^5.1.0",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"dependencies": {
"configly": "^4.1.0",
"gray-matter": "^2.1.1",
"koa": "^2.2.0",
"koa-router": "^7.2.1",
"koa-send": "^4.1.0",
"markdown-it": "^8.3.1",
"rheo": "^2.2.0",
"stream-array": "^1.1.2",
"toml": "^2.3.2"
}
}
|