forked from JuanCarniglia/kbn_sankey_vis
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 1.47 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
{
"name": "kbn-sankey-vis",
"version": "8.14.0",
"kibana": {
"version": "kibana"
},
"authors": [
"Chenryn <[email protected]>",
"Ch-bas <[email protected]>"
],
"description": "Sankey Diagram Visualization Plugin",
"license": "Apache-2.0",
"homepage": "https://github.com/uniberg/kbn_sankey_vis",
"repository": "https://github.com/uniberg/kbn_sankey_vis.git",
"main": "index.js",
"scripts": {
"preinstall": "node ../../preinstall_check",
"start": "cd ../.. && node scripts/kibana --dev",
"start-xpack": "cd .. && node scripts/kibana --dev",
"debug": "node --nolazy --inspect ../../scripts/kibana --dev",
"test": "nyc --all mocha",
"build": "node ../../scripts/plugin_helpers.js build",
"compile-and-build": "node ../../scripts/plugin_helpers.js build",
"compile": "rm -rf ./target && export NODE_OPTIONS=--openssl-legacy-provider && node ../../scripts/plugin_helpers.js build --kibana-version none --skip-archive && mv build/kibana/kbnSankeyVis/target . && rm -rf build/*",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"dev": "yarn plugin-helpers dev"
},
"dependencies": {
"angular": "^1.8.0",
"angular-recursion": "^1.0.5",
"angular-sanitize": "^1.8.2",
"d3-plugins-sankey": "https://github.com/uniberg/d3-plugins-sankey.git"
},
"devDependencies": {
"@types/angular": "^1.8.0",
"@fortawesome/fontawesome-free": "5.15.2",
"mocha": "~5.0.4",
"nyc": "^13.3.0"
}
}