forked from devopstrainingblr/nodejs-app-mss
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 900 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
35
36
37
38
{
"name": "nodejsexamples",
"version": "1.0.0",
"description": "This Project explains all Node JS examples",
"main": "app.js",
"publishConfig": {
"registry": "http://13.200.254.242:8081/repository/nodejsmss/"
},
"scripts": {
"server": "http-server -c-1 -p 9999",
"start1": "nodemon app.js",
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"sonar": "node sonar-project.js"
},
"dependencies": {
"cfenv": "^1.1.0",
"express": "^4.16.4"
},
"devDependencies": {
"nodemon": "^1.18.9",
"sonarqube-scanner": "^2.7.0"
},
"engines": {
"node": "v10.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MithunTechnologies/node-js-application"
},
"keywords": [
"node",
"Mithun Technologies",
"express"
],
"author": "Mithun Reddy Lacchannagari",
"license": "MIT"
}