-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.83 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.83 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
52
53
{
"name": "@microsoft/feature-management",
"version": "1.0.0",
"description": "Feature Management is a library for enabling/disabling features at runtime. Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.",
"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 clean && rollup --config && npm run build-test",
"build-test": "tsc -p ./tsconfig.test.json",
"clean": "rimraf dist out types",
"dev": "rollup --config --watch",
"lint": "eslint src/ test/ --ignore-pattern test/browser/testcases.js",
"fix-lint": "eslint src/ test/ --fix --ignore-pattern test/browser/testcases.js",
"test": "mocha out/test/*.test.{js,cjs,mjs} --parallel",
"test-browser": "npx playwright install chromium && npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/FeatureManagement-JavaScript.git"
},
"license": "MIT",
"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/mocha": "^10.0.6",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@playwright/test": "^1.46.1",
"chai": "^4.4.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.0",
"sinon": "^18.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
}
}