-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "nodejs-cli",
"version": "1.0.0",
"description": "Creating RESTful API CLI",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./app/index.js",
"debug-server": "NODE_DEBUG=server node ./app/index.js",
"debug-worker": "NODE_DEBUG=worker node ./app/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamariddinS/Node.js-CLI.git"
},
"keywords": [
"file-manager",
"cli",
"api",
"Restful"
],
"author": "Samariddin Sayfiddinov",
"license": "ISC",
"bugs": {
"url": "https://github.com/SamariddinS/Node.js-CLI/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/SamariddinS/Node.js-CLI#readme",
"devDependencies": {
"eslint": "^8.14.0"
},
"dependencies": {
"@nlpjs/nlp": "^4.23.5",
"node-fetch": "^3.2.4"
}
}