forked from voxpelli/webpage-micropub-to-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "micropub-to-github",
"version": "0.6.1",
"license": "MIT",
"private": true,
"description": "An endpoint that accepts Micropub requests, formats them into Jekyll posts and pushes them to a configured GitHub repository.",
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/webpage-micropub-to-github",
"repository": {
"type": "git",
"url": "git://github.com/emilsayahi/webpage-micropub-to-github.git"
},
"main": "./lib/main",
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node .",
"mocha": "NODE_ENV=test DOTENV_FILE=test/test.env nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
"dependency-check": "JS_FILES=\"lib/*.js test/*.js\" && dependency-check . $JS_FILES && dependency-check . $JS_FILES --unused --no-dev",
"test": "installed-check -e && eslint . && npm run --silent dependency-check && npm run --silent mocha",
"prepush": "npm test"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.2",
"dependency-check": "3.1.0",
"eslint": "4.19.1",
"eslint-config-semistandard": "12.0.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"husky": "0.14.3",
"installed-check": "2.1.3",
"mocha": "5.2.0",
"nock": "9.4.0",
"nyc": "12.0.2",
"sinon": "6.0.1"
},
"dependencies": {
"bunyan-duckling": "^1.0.0",
"dotenv": "^6.0.0",
"express": "^4.13.0",
"format-microformat": "^0.10.2",
"fulfills": "^1.0.0",
"github-publish": "^3.0.0",
"js-yaml": "^3.6.1",
"micropub-express": "git://github.com/andjosh/node-micropub-express.git"
}
}