-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 967 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
34
{
"name": "notes-app",
"version": "1.0.0",
"description": "Simple notes taking app using nodejs",
"main": "app.js",
"scripts": {
"test": "nodemon ./app.js",
"remove" : "node app.js remove --title=\"ss\"",
"add" : "node app.js add --title=\"ss\" --description=\"sasd\"",
"inspectadd": "node inspect app.js add --title=\"sAD111ASD1\" --description=\"sasd\"",
"list": "node app.js list",
"inspectread": "node inspect app.js read --title=\"11\"",
"read": "node app.js read --title=\"11\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeieshan/Notes-App.git"
},
"keywords": [
"notes-app",
"nodejs"
],
"author": "Zeeshan Haider",
"license": "ISC",
"bugs": {
"url": "https://github.com/xeieshan/Notes-App/issues"
},
"homepage": "https://github.com/xeieshan/Notes-App#readme",
"dependencies": {
"chalk": "^4.1.1",
"validator": "^13.6.0",
"yargs": "^17.0.1"
}
}