-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (49 loc) · 1.5 KB
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
{
"name": "@microsoft/feature-management-applicationinsights-browser",
"version": "2.3.0",
"description": "Feature Management Application Insights Plugin for Browser provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/esm/index.js",
"type": "module",
"types": "./dist/types/index.d.ts",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run link && npm run clean && rollup --config",
"clean": "rimraf dist",
"link": "npm link ../feature-management",
"dev": "rollup --config --watch",
"lint": "eslint src/",
"fix-lint": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"publishConfig": {
"tag": "latest"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
"homepage": "https://github.com/microsoft/FeatureManagement-JavaScript#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.18.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"rimraf": "^6.0.1",
"rollup": "^4.50.0",
"rollup-plugin-dts": "^6.2.3",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.3.2",
"@microsoft/feature-management": "2.3.0"
}
}