This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@elastic/plugin-helpers",
"version": "7.1.8",
"description": "Just some helpers for kibana plugin devs.",
"main": "lib/index.js",
"bin": {
"plugin-helpers": "bin/plugin-helpers.js"
},
"keywords": [
"kibana",
"kibana-plugin"
],
"author": "Spencer Alger <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"test": "npm run lint && jest",
"test:only": "jest",
"test:dev": "jest --watch",
"lint": "eslint bin/ help/ tasks/"
},
"dependencies": {
"commander": "^2.9.0",
"del": "^2.2.2",
"gulp-rename": "1.2.2",
"gulp-zip": "^4.1.0",
"inquirer": "^1.2.2",
"through2-map": "^3.0.0",
"vinyl-fs": "2.3.1"
},
"devDependencies": {
"@elastic/eslint-config-kibana": "^0.15.0",
"babel-eslint": "^8.0.0",
"eslint": "^4.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^22.4.3"
},
"engines": {
"node": "^6.11.5 || ^8.8.0"
},
"directories": {
"doc": "docs"
},
"jest": {
"modulePathIgnorePatterns": [
"__fixtures__"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/kibana-plugin-helpers.git"
},
"bugs": {
"url": "https://github.com/elastic/kibana-plugin-helpers/issues"
},
"homepage": "https://github.com/elastic/kibana-plugin-helpers#readme"
}