forked from eduardoboucas/staticman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "staticman",
"version": "3.1.0",
"description": "Static sites with superpowers",
"main": "index.js",
"scripts": {
"prestart": "if [ ! -d node_modules ]; then npm install; fi",
"start": "node index.js",
"test": "standardx && jest",
"test-dev": "TEST_DEV=true jest --watch",
"debug": "nodemon --inspect index.js"
},
"engines": {
"node": ">=18.20.2"
},
"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.4.3",
"@gitbeaker/rest": "^40.0.3",
"@octokit/auth-app": "^6.1.1",
"@octokit/request": "^8.4.0",
"@octokit/rest": "^20.1.0",
"akismet": "^2.0.7",
"body-parser": "^1.20.2",
"bunyan-slack": "^1.0.0",
"convict": "^6.2.4",
"express": "^4.19.2",
"express-github-webhook": "^1.0.6",
"express-recaptcha": "^5.1.0",
"form-data": "^4.0.0",
"js-yaml": "^4.1.0",
"mailgun.js": "^10.2.1",
"markdown-table": "^2.0.0",
"md5": "^2.3.0",
"moment": "^2.30.1",
"node-rsa": "^1.1.1",
"nodemon": "^3.1.0",
"object-path": "^0.11.8",
"rate-limiter-flexible": "^5.0.0",
"request-promise": "^4.2.6",
"sha1": "^1.1.1",
"slug": "^9.0.0",
"universal-analytics": "^0.5.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"fetch-mock": "^9.11.0",
"front-matter": "^4.0.2",
"istanbul-cobertura-badger": "^1.3.1",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"nock": "^14.0.0-beta.6",
"standardx": "^7.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"controllers/**/*.js",
"lib/**/*.js",
"*.js"
],
"coverageReporters": [
"cobertura"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"testMatch": [
"*/**/test/acceptance/**/*.test.js",
"*/**/test/unit/**/*.test.js"
]
},
"standardx": {
"env": [
"jest"
],
"ignore": [
"test/**/*"
]
},
"eslintConfig": {
"rules": {
"object-curly-spacing": "off",
"quote-props": "off",
"indent": "off",
"prefer-const": "off",
"camelcase": "off"
}
}
}