-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "@eliware/project-template",
"type": "module",
"version": "1.1.0",
"description": "A template for starting new Node.js projects.",
"main": "project-template.mjs",
"scripts": {
"start": "node project-template.mjs",
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/project-template.git"
},
"keywords": [
"project-template",
"nodejs",
"starter",
"template"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/project-template/issues"
},
"homepage": "https://github.com/eliware/project-template#readme",
"devDependencies": {
"jest": "^30.0.4"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).mjs",
"**/?(*.)+(spec|test).cjs"
]
},
"dependencies": {
"@eliware/common": "^1.1.1",
"dotenv": "^17.2.0"
}
}