forked from Azure/react-appinsights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-appinsights",
"version": "3.0.0-rc.6",
"description": "Application Insights module for React applications",
"main": "dist/index.js",
"module": "dist-esm/src/index.js",
"browser": {
"./dist/index.js": "./browser/index.js"
},
"types": "dist-esm/src/index.d.ts",
"scripts": {
"clean": "rimraf dist dist-*",
"build": "tsc -p . && rollup -c && rollup -c rollup.test.config.js",
"test": "jest --config jestconfig.json",
"test-watch": "jest --config jestconfig.json --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/react-appinsights.git"
},
"keywords": [
"Azure",
"Cloud",
"React",
"ReactJS",
"AppInsights",
"Application Insights",
"Microsoft Application Insights",
"Telemetry"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/react-appinsights/issues"
},
"engine": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/Azure/react-appinsights#readme",
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.11",
"@types/node": "^12.0.0",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"jest-junit-reporter": "^1.1.0",
"prettier": "^1.16.4",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "1.11.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.2.1",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-visualizer": "^1.1.1",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.2"
},
"sideEffects": false,
"dependencies": {
"@microsoft/applicationinsights-web": "^2.0.0-rc1",
"history": "^4.9.0",
"react": "^16.8.6"
}
}