-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 736 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
{
"name": "task-manager",
"version": "0.0.1-alpha.1",
"description": "Task Manager",
"main": "js/app.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage --setupFilesAfterEnv './jest.setup.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdvmoreira/task-manager.git"
},
"keywords": [
"javascript",
"projects",
"todoapp"
],
"author": "Flavio Moreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/fdvmoreira/task-manager/issues"
},
"homepage": "https://github.com/fdvmoreira/task-manager#readme",
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}