-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 834 Bytes
/
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
{
"name": "ignite.nodejs.taskmanager.api",
"version": "0.1.0",
"description": "Node web REST API to manage tasks.",
"type": "module",
"main": "src/server.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"start": "node --watch src/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/matheuspiment/Ignite.NodeJS.TaskManager.API.git"
},
"keywords": [
"Node",
"REST",
"Task",
"Manager"
],
"author": "Matheus Pimenta",
"license": "MIT",
"bugs": {
"url": "https://github.com/matheuspiment/Ignite.NodeJS.TaskManager.API/issues"
},
"homepage": "https://github.com/matheuspiment/Ignite.NodeJS.TaskManager.API#readme",
"dependencies": {
"csv-parse": "^5.5.2"
},
"devDependencies": {
"jest": "^29.7.0"
}
}