-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "azurerig",
"version": "1.0.0",
"description": "",
"main": "main.js",
"bin": {
"rig": "main.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/main.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "sudo npm i -g && rig",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@azure/arm-monitor": "^5.4.0",
"@azure/ms-rest-nodeauth": "^1.0.1",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.0.0",
"@types/replace-string": "^2.0.0",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"async-request": "^1.2.0",
"azure-arm-containerregistry": "^5.0.0",
"azure-arm-insights": "^1.0.2-preview",
"azure-arm-monitor": "^5.4.0",
"azure-arm-resource": "^7.3.0",
"azure-arm-storage": "^8.0.0",
"azure-arm-website": "^5.7.0",
"azure-devops-node-api": "^7.2.0",
"azure-functions-core-tools": "^2.0.3",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^2.20.0",
"figlet": "^1.2.1",
"inquirer": "^6.2.2",
"ms-rest-azure": "^2.6.0",
"path": "^0.12.7",
"replace-string": "^2.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@types/node": "^11.13.2",
"nodemon": "^1.18.11",
"ts-node": "^8.0.3",
"typescript": "^3.4.2"
}
}