forked from algenty/grafana-flowcharting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.54 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "flowcharting",
"version": "0.9.1",
"description": "flow charting plugin for Grafana",
"main": "src/module.js",
"scripts": {
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"archive": "grunt archive",
"init": "grunt init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algenty/grafana-flowcharting"
},
"author": "Arnaud GENTY",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/algenty/grafana-flowcharting/issues"
},
"homepage": "https://github.com/algenty/grafana-flowcharting",
"jest": {
"globalSetup": "<rootDir>/spec/globalSetup.js",
"globalTeardown": "<rootDir>/spec/globalTeardown.js",
"moduleNameMapper": {
"grafana/*": "<rootDir>/spec/grafana-sdk-mock.js"
}
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@grafana/data": "^7.0.3",
"@grafana/eslint-config": "1.0.0-rc1",
"@grafana/runtime": "^7.0.3",
"@grafana/toolkit": "^7.0.3",
"@grafana/ui": "^7.0.3",
"@types/angular": "^1.6.56",
"@types/chartist": "^0.9.46",
"@types/chroma-js": "^2.0.0",
"@types/grafana": "github:CorpGlory/types-grafana.git",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.150",
"@typescript-eslint/eslint-plugin": "^2.18",
"angular": "^1.7.9",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"chartist": "^0.11.4",
"chroma-js": "^2.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.16.4",
"grafana-sdk-mocks": "grafana/grafana-sdk-mocks",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.6.0",
"grunt-git": "^1.0.14",
"invariant": "^2.2.4",
"jquery": "^3.4.1",
"load-grunt-tasks": "^5.1.0",
"lodash": "^4.17.15",
"marky": "^1.2.1",
"mxgraph": "^4.1.1",
"mxgraph-type-definitions": "^1.0.1",
"safe-eval": "^0.4.1",
"vkbeautify": "^0.99.3"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@typescript-eslint/parser": "^2.18.0",
"babel-loader": "^8.0.6",
"babel-plugin-angularjs-annotate": "^0.10.0",
"eslint": "^6.8.0",
"local-web-server": "^4.0.0",
"ts-loader": "^6.2.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.2"
}
}