This repository has been archived by the owner on May 18, 2019. It is now read-only.
forked from NicoloTartaggia/7DOS-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.45 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": "7dos-grafana-plugin",
"version": "1.0.0",
"description": "Some description...",
"main": "dist/module",
"scripts": {
"build": "webpack",
"eslint": "eslint -c .eslintrc.json src/**/*.ts",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha --require ts-node/register --recursive \"src/test/**/*.ts\"",
"coverage": "nyc mocha --require source-map-support/register --require ts-node/register --require mocha-lcov-reporter --recursive \"src/test/**/*.ts\" && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [],
"author": "7DOS",
"license": "MIT",
"repository": "https://github.com/NicoloTartaggia/7DOS-plugin",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"src/panels/graph-panel/**",
"src/test/**",
"dist/**",
"webpack.config.js"
],
"all": true
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@types/angular": "^1.6.43",
"@types/chai": "^4.1.7",
"@types/flot": "0.0.31",
"@types/grafana": "git+https://git@github.com/CorpGlory/types-grafana.git",
"@types/jquery": "^3.3.0",
"@types/lodash": "^4.14.121",
"@types/mocha": "^5.2.6",
"@types/moment": "^2.13.0",
"@types/node": "^11.10.4",
"@types/perfect-scrollbar": "^1.3.0",
"@types/tether-drop": "^1.4.8",
"@types/tinycolor2": "^1.4.0",
"@types/when": "^2.4.33",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"clean-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.0",
"eslint": "^5.16.0",
"loader-utils": "^1.2.3",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"typescript": "^3.3.4000",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@akanass/rx-http-request": "^3.1.0",
"@types/remarkable": "^1.7.3",
"ajv": "^6.10.0",
"better-jsbayes-viz": "0.0.9",
"clone": "^2.1.2",
"coveralls": "^3.0.3",
"influx": "^5.0.7",
"jsbayes": "^0.1.0",
"lodash": "^4.17.11",
"nyc": "^13.3.0",
"rxjs": "^6.4.0",
"stream-http": "github:node-influx/stream-http",
"tether-drop": "^1.4.2",
"tinycolor2": "^1.4.1",
"tslint": "^5.14.0"
}
}