forked from microsoft/Ceruleoscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 974 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
{
"name": "@im-open/playwright-appinsights-health-checker",
"version": "0.2.1",
"description": "Use Playwright to create availability tests with AppInsights, running on Azure Functions",
"author": "wtw",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/im-open/playwright-appinsights-health-checker.git"
},
"main": "./dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "node ./dist/test/tests.js",
"buildtest": "tsc --project tsconfig.json & node ./dist/test/tests.js"
},
"dependencies": {
"applicationinsights": "^3.3.0",
"@azure/storage-blob": "^12.25.0",
"playwright": "^1.47.2",
"playwright-chromium": "^1.47.2",
"@playwright/test": "^1.47.2"
},
"devDependencies": {
"typescript": "^5.6.2"
},
"prettier": {
"printWidth": 160
}
}