-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 784 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 784 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
{
"name": "azure-message-reciever",
"version": "1.0.0",
"description": "Azure Message Reciever",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint --fix src/**/*.js",
"start:dev": "babel-node src/index.js",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Azure",
"Pub",
"Sub"
],
"author": "Anmol Agarwal <anmol.agarwal@acsicorp.com>",
"license": "SEE IN LICENSE",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"eslint": "^8.46.0",
"eslint-config-google": "^0.14.0"
},
"dependencies": {
"@azure/service-bus": "^7.9.0"
}
}