forked from microsoft/applicationinsights-channel-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.23 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
{
"name": "@microsoft/applicationinsights-channel-js",
"version": "2.0.0-beta.0",
"description": "Microsoft Application Insights JavaScript SDK Channel",
"main": "dist/applicationinsights-channel-js.js",
"module": "dist-esm/applicationinsights-channel-js.js",
"types": "types/applicationinsights-channel-js.d.ts",
"sideEffects": false,
"repository": "github:Microsoft/applicationinsights-channel-js",
"scripts": {
"clean": "rm -rf browser dist dist-esm types",
"build": "npm run build:esm && npm run build:browser",
"build:esm": "grunt",
"build:browser": "rollup -c",
"test": "grunt test"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-qunit": "2.0.0",
"grunt-contrib-uglify": "3.1.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",
"typescript": "2.5.3"
},
"dependencies": {
"@microsoft/applicationinsights-common": "1.0.0-beta.17",
"@microsoft/applicationinsights-core-js": "2.0.0-beta.0",
"tslib": "^1.9.3"
},
"license": "MIT"
}