-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
35 lines (35 loc) · 854 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
{
"name": "node-express-azure",
"version": "2.0.1",
"description": "> Sample Node app to demonstrate GitHub Copilot-assisted debugging.",
"main": "app.js",
"scripts": {
"build": "npm install",
"test": "mocha --exit",
"start": "node app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "4.16.0",
"express-handlebars": "^7.1.3",
"tedious": "^18.2.4"
},
"devDependencies": {
"chai": "4.2.0",
"chai-http": "4.2.0",
"mocha": "^10.7.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timothywarner/node-express-azure.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/timothywarner/node-express-azure/issues"
},
"homepage": "https://github.com/timothywarner/node-express-azure#readme"
}