-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.55 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
{
"name": "blego",
"version": "1.0.0",
"description": "Static site generator powered by colections and relationships.",
"license": "MIT",
"keywords": [
"static site generator",
"collections",
"relationships"
],
"author": {
"name": "Matt Stypa",
"email": "matt@mattstypa.com",
"url": "http://mattstypa.com"
},
"repository": {
"type": "git",
"url": "https://github.com/MattStypa/blego"
},
"main": "main.js",
"bin": {
"blego": "lib/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "eslint lib && eslint tests && jest -i --coverage"
},
"dependencies": {
"chalk": "^4.1.2",
"collect.js": "^4.34.3",
"commander": "^10.0.0",
"detect-port-alt": "^1.1.6",
"express": "^4.18.2",
"front-matter": "^4.0.2",
"fs-extra": "^11.1.0",
"glob": "^9.3.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2",
"marked": "^4.2.12",
"node-emoji": "^1.11.0",
"open": "^8.4.2",
"stack-trace": "^0.0.10"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"node-fetch": "^2.6.9",
"strip-ansi": "^6.0.1"
},
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"setupFiles": [
"<rootDir>/jest_utils/setup.js"
],
"modulePaths": [
"<rootDir>/"
],
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"collectCoverageFrom": [
"lib/**/*.{js,jsx}",
"!lib/cli/blueprint/**/*",
"!lib/cli.js"
]
}
}