2016-05-18 02:39:58 +03:00
|
|
|
{
|
2019-10-16 06:39:46 +03:00
|
|
|
"name": "@microsoft/applicationinsights-web",
|
2018-10-18 01:44:16 +03:00
|
|
|
"description": "Microsoft Application Insights JavaScript SDK",
|
2023-05-23 18:32:39 +03:00
|
|
|
"version": "3.0.2",
|
2018-10-18 01:44:16 +03:00
|
|
|
"keywords": [
|
|
|
|
"browser performance monitoring",
|
|
|
|
"script errors",
|
|
|
|
"application insights",
|
|
|
|
"microsoft",
|
|
|
|
"azure"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2021-07-07 00:26:31 +03:00
|
|
|
"postinstall": "node common/scripts/install-run-rush-silent.js update",
|
|
|
|
"build": "node common/scripts/install-run-rush.js rebuild --verbose",
|
|
|
|
"rebuild": "npm run build",
|
2021-08-17 02:53:28 +03:00
|
|
|
"testx": "rush test --verbose",
|
2019-10-16 06:39:46 +03:00
|
|
|
"test": "node common/scripts/install-run-rush.js test --verbose",
|
2022-07-28 17:53:29 +03:00
|
|
|
"mintest": "node common/scripts/install-run-rush.js mintest --verbose",
|
2020-01-28 21:59:19 +03:00
|
|
|
"lint": "node common/scripts/install-run-rush.js lint --verbose",
|
2021-07-09 22:14:18 +03:00
|
|
|
"perftest": "node common/scripts/install-run-rush.js perftest --verbose",
|
2022-05-20 19:05:46 +03:00
|
|
|
"rollupes5": "grunt rollupes5",
|
2021-05-24 23:33:25 +03:00
|
|
|
"rupdate": "node common/scripts/install-run-rush.js update --recheck --purge --full",
|
2021-06-08 08:04:48 +03:00
|
|
|
"serve": "grunt serve",
|
2021-07-07 00:26:31 +03:00
|
|
|
"setVersion": "node ./tools/release-tools/setVersion.js",
|
2021-08-17 02:53:28 +03:00
|
|
|
"purge": "node common/scripts/install-run-rush.js purge",
|
2023-06-30 19:02:16 +03:00
|
|
|
"rushClean": "node common/scripts/install-run-rush.js clean",
|
|
|
|
"fullClean": "npm run rushClean && git clean -xdf && npm install && rush update --recheck --full",
|
2022-07-28 17:53:29 +03:00
|
|
|
"fullCleanBuild": "npm run fullClean && npm run rebuild",
|
|
|
|
"ai-min": "node common/scripts/install-run-rush.js ai-min",
|
2023-04-06 23:57:43 +03:00
|
|
|
"ai-restore": "node common/scripts/install-run-rush.js ai-restore",
|
|
|
|
"npm-pack": "node common/scripts/install-run-rush.js npm-pack --verbose",
|
|
|
|
"npm-publish": "node ./tools/release-tools/npm_publish.js"
|
2018-10-18 01:44:16 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-05-09 00:51:09 +03:00
|
|
|
"url": "git+https://github.com/microsoft/ApplicationInsights-JS.git"
|
2018-10-18 01:44:16 +03:00
|
|
|
},
|
|
|
|
"author": "Microsoft Application Insights Team",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2019-05-09 00:51:09 +03:00
|
|
|
"url": "https://github.com/microsoft/ApplicationInsights-JS/issues"
|
2018-10-18 01:44:16 +03:00
|
|
|
},
|
2019-05-09 00:51:09 +03:00
|
|
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
2018-10-18 01:44:16 +03:00
|
|
|
"devDependencies": {
|
2023-05-02 17:51:49 +03:00
|
|
|
"@microsoft/rush": "5.97.1",
|
2021-09-14 03:15:33 +03:00
|
|
|
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
2022-05-10 20:58:32 +03:00
|
|
|
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
2023-01-09 19:25:39 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
|
|
"@typescript-eslint/parser": "^5.46.1",
|
2022-05-10 20:58:32 +03:00
|
|
|
"archiver": "^5.3.0",
|
|
|
|
"chromium": "^3.0.2",
|
|
|
|
"connect": "^3.7.0",
|
2021-08-17 02:53:28 +03:00
|
|
|
"eslint": "^7.29.0",
|
|
|
|
"eslint-config-standard": "^16.0.3",
|
|
|
|
"eslint-plugin-import": "^2.23.4",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
|
|
"eslint-plugin-security": "^1.4.0",
|
2022-05-20 21:00:29 +03:00
|
|
|
"grunt": "^1.5.3",
|
2022-05-10 20:58:32 +03:00
|
|
|
"grunt-cli": "^1.4.3",
|
|
|
|
"grunt-contrib-connect": "^3.0.0",
|
2022-10-10 02:52:35 +03:00
|
|
|
"grunt-contrib-copy": "^1.0.0",
|
2023-01-09 19:25:39 +03:00
|
|
|
"grunt-contrib-qunit": "^6.2.1",
|
|
|
|
"grunt-contrib-uglify": "^5.2.1",
|
|
|
|
"puppeteer": "19.2.0",
|
|
|
|
"typedoc": "^0.23.22",
|
|
|
|
"typescript": "^4.9.3",
|
|
|
|
"whatwg-fetch": "^3.6.2"
|
2020-03-03 02:14:41 +03:00
|
|
|
}
|
2019-08-14 23:41:04 +03:00
|
|
|
}
|