forked from eduardoboucas/staticman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"name": "staticman",
"version": "2.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 && node test/utils/coverage.js",
"test-dev": "TEST_DEV=true jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardoboucas/staticman.git"
},
"author": "Eduardo Boucas <mail@eduardoboucas.com> (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",
"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",
"github": "^3.0.0",
"js-yaml": "^3.10.0",
"mailgun-js": "^0.7.13",
"markdown-table": "^1.0.0",
"md5": "^2.1.0",
"moment": "^2.18.1",
"node-rsa": "^0.4.2",
"node-uuid": "^1.4.7",
"object-path": "^0.11.1",
"request-promise-native": "^1.0.4",
"sha1": "^1.1.1",
"slug": "^0.9.1",
"universal-analytics": "^0.4.2"
},
"devDependencies": {
"front-matter": "^2.1.2",
"istanbul-cobertura-badger": "^1.3.0",
"jest": "^20.0.4",
"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": {
"ignore": [
"test/**/*"
]
}
}