2019-02-11 12:07:22 +03:00
|
|
|
{
|
|
|
|
"name": "@microsoft/applicationinsights-web-basic",
|
2024-06-11 20:00:25 +03:00
|
|
|
"version": "3.2.2",
|
2023-10-31 00:39:02 +03:00
|
|
|
"description": "Microsoft Application Insights JavaScript SDK - Web Basic",
|
2021-02-20 02:44:26 +03:00
|
|
|
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
|
|
"author": "Microsoft Application Insights Team",
|
2023-04-06 23:57:43 +03:00
|
|
|
"main": "dist/es5/applicationinsights-web-basic.js",
|
|
|
|
"module": "dist-es5/index.js",
|
|
|
|
"types": "types/applicationinsights-web-basic.d.ts",
|
2019-02-11 12:07:22 +03:00
|
|
|
"sideEffects": false,
|
|
|
|
"scripts": {
|
2023-06-30 19:02:16 +03:00
|
|
|
"clean": "git clean -xdf",
|
2021-08-03 22:32:44 +03:00
|
|
|
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
2019-02-11 12:07:22 +03:00
|
|
|
"build:esm": "grunt aiskulite",
|
2023-04-06 23:57:43 +03:00
|
|
|
"build:browser": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
2021-07-07 00:26:31 +03:00
|
|
|
"rebuild": "npm run build",
|
2022-04-01 01:14:29 +03:00
|
|
|
"test": "grunt aiskuliteunittests",
|
2022-07-28 17:53:29 +03:00
|
|
|
"mintest": "grunt aiskulite-mintests",
|
2021-02-06 04:10:20 +03:00
|
|
|
"lint": "tslint -p tsconfig.json",
|
2021-08-03 22:32:44 +03:00
|
|
|
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
2022-07-28 17:53:29 +03:00
|
|
|
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js",
|
|
|
|
"ai-min": "grunt aiskulite-min",
|
2023-04-06 23:57:43 +03:00
|
|
|
"ai-restore": "grunt aiskulite-restore",
|
2023-10-31 00:39:02 +03:00
|
|
|
"npm-pack": "npm pack",
|
|
|
|
"api-docs": "typedoc"
|
2019-02-11 12:07:22 +03:00
|
|
|
},
|
2021-10-22 20:33:31 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
2021-11-04 21:08:45 +03:00
|
|
|
"directory": "AISKULight"
|
2021-10-22 20:33:31 +03:00
|
|
|
},
|
2019-02-11 12:07:22 +03:00
|
|
|
"devDependencies": {
|
2022-04-01 01:14:29 +03:00
|
|
|
"@microsoft/ai-test-framework": "0.0.1",
|
2021-02-04 03:25:30 +03:00
|
|
|
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
2023-04-11 01:56:48 +03:00
|
|
|
"@microsoft/applicationinsights-rollup-es5": "1.0.2",
|
2024-02-14 05:22:33 +03:00
|
|
|
"@microsoft/api-extractor": "^7.40.0",
|
2022-05-20 21:00:29 +03:00
|
|
|
"grunt": "^1.5.3",
|
2021-07-07 00:26:31 +03:00
|
|
|
"grunt-cli": "^1.4.3",
|
2023-01-09 19:25:39 +03:00
|
|
|
"grunt-contrib-qunit": "^6.2.1",
|
2021-07-22 22:11:47 +03:00
|
|
|
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
2021-09-14 03:15:33 +03:00
|
|
|
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
2020-03-03 02:14:41 +03:00
|
|
|
"globby": "^11.0.0",
|
2021-04-15 23:43:41 +03:00
|
|
|
"magic-string": "^0.25.7",
|
2022-04-01 01:14:29 +03:00
|
|
|
"pako": "^2.0.3",
|
2023-04-06 23:57:43 +03:00
|
|
|
"@rollup/plugin-commonjs": "^24.0.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
|
|
"@rollup/plugin-replace": "^5.0.2",
|
2022-04-01 01:14:29 +03:00
|
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
2023-04-06 23:57:43 +03:00
|
|
|
"rollup": "^3.20.0",
|
2023-01-09 19:25:39 +03:00
|
|
|
"typescript": "^4.9.3",
|
2023-10-31 00:39:02 +03:00
|
|
|
"typedoc": "^0.24.8",
|
2021-08-17 02:53:28 +03:00
|
|
|
"tslib": "^2.0.0"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"tslib": "*"
|
2019-02-11 12:07:22 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-18 20:02:16 +03:00
|
|
|
"@microsoft/dynamicproto-js": "^2.0.3",
|
2023-04-08 03:19:54 +03:00
|
|
|
"@microsoft/applicationinsights-shims": "3.0.1",
|
2024-06-11 20:00:25 +03:00
|
|
|
"@microsoft/applicationinsights-common": "3.2.2",
|
|
|
|
"@microsoft/applicationinsights-channel-js": "3.2.2",
|
|
|
|
"@microsoft/applicationinsights-core-js": "3.2.2",
|
2024-04-19 04:55:15 +03:00
|
|
|
"@nevware21/ts-utils": ">= 0.11.1 < 2.x",
|
|
|
|
"@nevware21/ts-async": ">= 0.5.1 < 2.x"
|
2020-04-01 23:29:23 +03:00
|
|
|
},
|
2021-09-08 21:09:38 +03:00
|
|
|
"license": "MIT"
|
2019-02-11 12:07:22 +03:00
|
|
|
}
|