-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.48 KB
/
package.json
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
{
"name": "lazymention",
"version": "1.0.1",
"description": "Support WebSub and Webmention on a static site",
"main": "lib/app.js",
"bin": {
"lazymention": "./bin/server"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "npm run build && nyc -r lcov -r text perjury test/*-test.js",
"test:install": "npm install -g . && type lazymention",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strugee/lazymention.git"
},
"keywords": [
"webmention",
"websub",
"indieweb",
"staticsite",
"daemon"
],
"author": "AJ Jordan <alex@strugee.net>",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/strugee/lazymention/issues"
},
"homepage": "https://github.com/strugee/lazymention#readme",
"dependencies": {
"bunyan": "^1.8.12",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.1",
"concat-stream": "^1.6.0",
"crawl-mf2": "github:strugee/node-crawl-mf2",
"express": "^4.16.2",
"follow-redirects": "^1.2.5",
"lodash": "^4.17.11",
"microformat-node": "^2.0.1",
"send-webmention": "^2.0.0",
"slash-escape": "^1.0.0",
"url-toolkit": "^2.1.2",
"uuid": "^3.1.0",
"write-file-atomic": "^2.3.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"coveralls": "^3.0.1",
"mock-fs": "^4.4.2",
"nyc": "^13.3.0",
"perjury": "^1.1.4",
"proxyquire": "^2.0.1",
"sinon": "^4.1.2",
"typescript": "^2.6.2"
}
}