forked from eduardoboucas/staticman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "staticman",
"version": "3.0.0",
"description": "Static sites with superpowers",
"main": "index.js",
"scripts": {
"prestart": "if [ ! -d node_modules ]; then npm install; fi",
"start": "node index.js",
"test": "standard && jest",
"test-dev": "TEST_DEV=true jest --watch"
},
"engines": {
"node": ">=8.11.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardoboucas/staticman.git"
},
"author": "Eduardo Boucas <[email protected]> (https://eduardoboucas.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/eduardoboucas/staticman/issues"
},
"homepage": "https://github.com/eduardoboucas/staticman#readme",
"dependencies": {
"@dadi/logger": "^1.3.0",
"@octokit/rest": "^16.3.2",
"akismet": "^1.0.0",
"body-parser": "^1.17.x",
"bunyan-slack": "0.0.10",
"convict": "^4.3.0",
"express": "^4.14.0",
"express-brute": "^0.6.0",
"express-github-webhook": "^1.0.5",
"express-recaptcha": "^2.1.0",
"gitlab": "^3.5.1",
"js-yaml": "^3.10.0",
"jsonwebtoken": "^8.4.0",
"mailgun-js": "^0.7.13",
"markdown-table": "^1.0.0",
"md5": "^2.1.0",
"moment": "^2.18.1",
"node-rsa": "^0.4.2",
"object-path": "^0.11.1",
"request-promise": "^4.2.2",
"sha1": "^1.1.1",
"slug": "^0.9.1",
"universal-analytics": "^0.4.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"front-matter": "^2.1.2",
"istanbul-cobertura-badger": "^1.3.0",
"jest": "^23.6.0",
"lodash": "^4.17.10",
"nock": "^9.0.13",
"standard": "^10.0.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"controllers/**/*.js",
"lib/**/*.js",
"*.js"
],
"coverageReporters": [
"cobertura"
],
"testMatch": [
"*/**/test/acceptance/**/*.test.js",
"*/**/test/unit/**/*.test.js"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"test/**/*"
]
}
}