-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "opendistro-alerting",
"version": "1.0.0",
"description": "Kibana Alerting Plugin",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin",
"kibana": {
"version": "7.0.1",
"templateVersion": "6.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin"
},
"scripts": {
"kbn": "node ../../kibana/scripts/kbn",
"lint": "../../kibana/node_modules/.bin/eslint '**/*.js' -c .eslintrc",
"start": "plugin-helpers start",
"test:server": "plugin-helpers test:server",
"test:browser": "plugin-helpers test:browser",
"test:jest": "../../kibana/node_modules/.bin/jest --config ./test/jest.config.js",
"build": "plugin-helpers build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@elastic/eslint-config-kibana": "link:../../kibana/packages/eslint-config-kibana",
"@kbn/eslint-import-resolver-kibana": "link:../../kibana/packages/kbn-eslint-import-resolver-kibana",
"@kbn/plugin-helpers": "link:../../kibana/packages/kbn-plugin-helpers",
"husky": "^2.3.0",
"lint-staged": "^8.1.6"
},
"dependencies": {
"brace": "^0.11.1",
"formik": "1.1.1",
"lodash": "^4.17.11",
"query-string": "5.1.1",
"react-router-dom": "4.3.1"
}
}