forked from microsoft/applicationinsights-core-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "@microsoft/applicationinsights-core-js",
"author": "Microsoft Corporation",
"version": "2.0.0-beta.0",
"description": "Microsoft Application Insights Core Javascript SDK",
"keywords": [
"azure",
"cloud",
"script errors",
"microsoft",
"application insights",
"browser performance monitoring",
"web analytics"
],
"main": "dist/applicationinsights-core-js.min.js",
"module": "dist-esm/applicationinsights-core-js.js",
"types": "types/applicationinsights-core-js.d.ts",
"browser": "browser/applicationinsights-core-js.min.js",
"scripts": {
"clean": "grunt clean",
"build": "npm run build:esm && npm run build:browser",
"build:esm": "grunt core",
"build:browser": "rollup -c rollup.config.js",
"test": "grunt coretest"
},
"repository": "github:Microsoft/applicationinsights-core-js",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-qunit": "2.0.0",
"grunt-ts": "^6.0.0-beta.15",
"grunt-tslint": "^5.0.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "2.5.3"
},
"dependencies": {
"tslib": "^1.9.3"
}
}