-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
48 lines (48 loc) · 1.71 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
46
47
48
{
"name": "@microsoft/applicationinsights-react-native",
"version": "2.2.4",
"description": "Microsoft Application Insights React Native Plugin",
"main": "dist-esm/index.js",
"types": "dist-esm/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/ApplicationInsights-JS/tree/master/extensions/applicationinsights-react-native"
},
"scripts": {
"prepublishOnly": "npm install && npm run build",
"build": "npm run build:esm && npm run build:browser",
"build:esm": "tsc -p tsconfig.json",
"build:test": "tsc -p Tests/tsconfig.json",
"build:browser": "echo \"No browser version\"",
"test": "npm run build:test && grunt reactnativetests",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"typescript": "^3.6.4",
"grunt": "1.0.1",
"grunt-contrib-qunit": "2.0.0",
"grunt-contrib-uglify": "3.1.0",
"grunt-ts": "^6.0.0-beta.15",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup": "^0.66.0",
"react-native-device-info": "^5.2.1",
"react-native": "0.59.8",
"react": "16.8.3",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"qunit": "^2.9.3"
},
"dependencies": {
"@microsoft/applicationinsights-shims" : "^1.0.0",
"@microsoft/applicationinsights-common": "^2.5.4",
"@microsoft/applicationinsights-core-js": "^2.5.4"
},
"peerDependencies": {
"react-native": "*",
"react-native-device-info": "^5.2.1"
},
"license": "MIT"
}