-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.54 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
51
{
"name": "@microsoft/feature-management-applicationinsights-node",
"version": "2.1.0-preview.1",
"description": "Feature Management Application Insights Plugin for Node.js provides a solution for sending feature flag evaluation events produced by the Feature Management library.",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"types/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run link && npm run clean && rollup --config",
"clean": "rimraf dist types",
"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": "preview"
},
"bugs": {
"url": "https://github.com/microsoft/FeatureManagement-JavaScript/issues"
},
"homepage": "https://github.com/microsoft/FeatureManagement-JavaScript#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"applicationinsights": "^2.9.6",
"@microsoft/feature-management": "2.1.0-preview.1"
}
}