-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
45
46
47
{
"name": "opendistro-alerting",
"version": "1.12.0.0",
"description": "Kibana Alerting Plugin",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin",
"repository": {
"type": "git",
"url": "https://github.com/opendistro-for-elasticsearch/alerting-kibana-plugin"
},
"config": {
"id": "opendistroAlertingKibana"
},
"scripts": {
"kbn": "node ../../scripts/kbn",
"lint": "../../node_modules/.bin/eslint '**/*.js' -c .eslintrc --ignore-path .gitignore",
"test:jest": "../../node_modules/.bin/jest --config ./test/jest.config.js",
"build": "yarn plugin-helpers build",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"postbuild": "echo Renaming build artifact to [$npm_package_config_id-$npm_package_version.zip] && mv build/$npm_package_config_id*.zip build/$npm_package_config_id-$npm_package_version.zip"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"husky": "^3.0.0",
"lint-staged": "^9.2.0"
},
"dependencies": {
"brace": "0.11.1",
"formik": "1.1.1",
"lodash": "^4.17.20",
"query-string": "^6.13.2",
"react-router-dom": "^5.2.0",
"react-vis": "^1.8.1"
},
"resolutions": {
"fstream": "1.0.12"
},
"engines": {
"node": "10.22.1",
"yarn": "^1.21.1"
}
}