-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 833 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 833 Bytes
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
{
"name": "eressea-tutorials",
"version": "1.1.0",
"description": "A collection of tutorials for the PBEM Eressea",
"scripts": {
"build": "npx eleventy",
"build-gh": "env NODE_ENV=production npx eleventy --pathprefix tutorials",
"serve": "npx eleventy --serve",
"debug": "DEBUG=* npx eleventy",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eressea/tutorials.git"
},
"author": "Jon Keeping",
"license": "MIT",
"bugs": {
"url": "https://github.com/eressea/tutorials/issues"
},
"homepage": "https://github.com/eressea/tutorials#readme",
"devDependencies": {
"@11ty/eleventy": "^3.1.0",
"eleventy-plugin-page-assets": "^0.3.0",
"jest": "^26.6.3",
"moment": "^2.29.1"
},
"dependencies": {
"@jest/globals": "latest"
}
}