-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "application-insights-action",
"version": "1.0.0",
"description": "Application Insights helper for Github Actions",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"pack": "./node_modules/.bin/ncc build ./src/index.ts --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wictorwilen/application-insights-action.git"
},
"keywords": [
"actions",
"node",
"application-insights"
],
"author": "Wictor Wilén ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/wictorwilen/application-insights-action/issues"
},
"homepage": "https://github.com/wictorwilen/application-insights-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^2.2.0",
"applicationinsights": "^1.7.5",
"request": "^2.88.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/request": "^2.48.5",
"@types/uuid": "^8.0.0",
"@zeit/ncc": "^0.22.3",
"typescript": "^3.9.3"
}
}