-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"name": "blotpub",
"version": "0.1.0",
"description": "A micropub endpoint that accepts requests, formats them into Blot posts and pushes them to a configured Dropbox folder.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "installed-check -e && eslint .",
"prepush": "npm test"
},
"keywords": [
"micropub",
"indieweb"
],
"author": "Amit Gawande <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/am1t/blotpub"
},
"license": "MIT",
"engines": {
"node": "^6.14.0 || ^8.10.0 || >=9.10.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dropbox": "^4.0.9",
"express": "^4.18.2",
"isomorphic-fetch": "^2.2.1",
"lodash.kebabcase": "^4.1.1",
"micropub-express": "git://github.com/am1t/node-micropub-express.git#394889e82514f3cfc0138bd6ec9ffd97ac6e34ce",
"remove-markdown": "^0.3.0",
"request": "^2.87.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"ajv": "^6.12.3",
"eslint": "^5.15.3",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"installed-check": "^2.2.0"
}
}