-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 939 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
30
31
32
33
34
35
36
37
38
39
{
"name": "interest-calculator",
"version": "1.0.0",
"description": "Application to calculate interest on a principal amount. Created using JavaScript, HTML, CSS, and served using Node.JS and Express.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"start-dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DecodeWebWithRohan/Interest-Calculator.git"
},
"keywords": [
"DecodeWebWithRohan",
"JavaScript",
"HTML",
"CSS",
"Node.JS",
"Express.JS",
"Simple",
"App",
"Single",
"page",
"app"
],
"author": "Rohan Roy",
"license": "ISC",
"bugs": {
"url": "https://github.com/DecodeWebWithRohan/Interest-Calculator/issues"
},
"homepage": "https://github.com/DecodeWebWithRohan/Interest-Calculator#readme",
"dependencies": {
"express": "^3.4.4"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}