-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
67 lines (67 loc) · 1.98 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
60
61
62
63
64
65
66
67
{
"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 <[email protected]> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/webpage-micropub-to-github",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/webpage-micropub-to-github.git"
},
"main": "./lib/main",
"directories": {
"lib": "./lib"
},
"scripts": {
"check:dependency-check": "dependency-check 'lib/**/*.js' 'test/**/*.js' --no-dev",
"check:installed-check": "installed-check --engine-no-dev",
"check:lint": "eslint .",
"check": "run-p check:*",
"start": "node .",
"sync-gh-actions": "ghat",
"test:mocha": "NODE_ENV=test DOTENV_FILE=test/test.env nyc --reporter=lcov --reporter text mocha 'test/**/*.spec.js'",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@voxpelli/eslint-config": "^4.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"ghat": "^0.14.0",
"husky": "^4.3.8",
"installed-check": "^7.0.0",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"npm-run-all2": "^6.0.5",
"nyc": "^15.0.0",
"sinon": "^8.1.1"
},
"dependencies": {
"bunyan-adaptor": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"format-microformat": "^0.11.1",
"fulfills": "^2.1.0",
"github-publish": "^3.0.0",
"js-yaml": "^3.12.1",
"micropub-express": "^0.8.1"
}
}