-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.84 KB
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:global": "npm install -g . && type lazymention",
"test:install:local": "REPO=$(pwd); cd $(mktemp -d); npm install $REPO perjury@1 express@4 bunyan@1 && sed -e \"s;'\\.\\./lib/app';'lazymention';\" -e \"s;'\\.\\./lib/persistence');'lazymention').persistence;\" -e 's/app module test/local require() test/' -e \"s;'express';'lazymention/node_modules/express';\" $REPO/test/app-test.js > install-test.js && cp -r $REPO/test/lib . && perjury install-test.js",
"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",
"express": "^4.16.2",
"follow-redirects": "^1.2.5",
"lodash": "^4.17.4",
"microformat-node": "^2.0.1",
"send-webmention": "^1.0.0",
"slash-escape": "^1.0.0",
"url-toolkit": "^2.1.2",
"uuid": "^3.1.0",
"write-file-atomic": "^2.3.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"mock-fs": "^4.4.2",
"nyc": "^11.3.0",
"perjury": "^1.1.0",
"proxyquire": "^1.8.0",
"sinon": "^4.1.2",
"typescript": "^2.6.2"
}
}