-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yue Yang <[email protected]>
- Loading branch information
Showing
4 changed files
with
562 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,26 +5,27 @@ | |
"author": "Yue Yang <[email protected]> (https://g1eny0ung.site)", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"build": "grafana-toolkit plugin:build", | ||
"test": "grafana-toolkit plugin:test", | ||
"dev": "grafana-toolkit plugin:dev", | ||
"watch": "grafana-toolkit plugin:dev --watch", | ||
"postinstall": "husky install", | ||
"lint-staged": "lint-staged" | ||
}, | ||
"devDependencies": { | ||
"@grafana/data": "^7.0.0", | ||
"@grafana/runtime": "^7.4.2", | ||
"@grafana/toolkit": "^7.0.0", | ||
"@grafana/ui": "^7.0.0", | ||
"@testing-library/jest-dom": "5.4.0", | ||
"@testing-library/react": "^10.0.2", | ||
"@grafana/data": "^7.5.3", | ||
"@grafana/runtime": "^7.5.3", | ||
"@grafana/toolkit": "^7.5.3", | ||
"@grafana/ui": "^7.5.3", | ||
"@testing-library/jest-dom": "5.11.10", | ||
"@testing-library/react": "^11.2.6", | ||
"@types/lodash": "latest", | ||
"husky": "^5.0.9", | ||
"husky": "^6.0.0", | ||
"import-sort-style-eslint": "^6.0.0", | ||
"lint-staged": "^10.5.4", | ||
"prettier": "^2.2.1", | ||
"prettier-plugin-import-sort": "^0.0.6" | ||
"prettier-plugin-import-sort": "^0.0.6", | ||
"tslib": "^2.2.0" | ||
}, | ||
"engines": { | ||
"node": ">=12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,8 @@ | |
"info": { | ||
"description": "Chaos Mesh (A Chaos Engineering Platform for Kubernetes) Datasource", | ||
"author": { | ||
"name": "Yue Yang", | ||
"email": "[email protected]", | ||
"url": "https://github.com/g1eny0ung" | ||
"name": "Chaos Mesh Project", | ||
"url": "https://github.com/chaos-mesh" | ||
}, | ||
"keywords": ["Cloud", "Chaos Engineering", "Chaos Mesh"], | ||
"logos": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"extends": "./node_modules/@grafana/toolkit/src/config/tsconfig.plugin.json", | ||
"include": ["src", "types"], | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"baseUrl": "./src", | ||
"typeRoots": ["./node_modules/@types"] | ||
} | ||
"baseUrl": "src" | ||
}, | ||
"include": ["src"] | ||
} |
Oops, something went wrong.