forked from simPod/GrafanaJsonDatasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "grafana-json",
"version": "1.0.0",
"description": "json datasource",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "jest --config jest.config.js",
"lint": "tslint --config tslint.json --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simPod/grafana-json-datasource.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/simPod/grafana-json-datasource/issues"
},
"engineStrict": true,
"devDependencies": {
"@types/grafana": "https://git@github.com/CorpGlory/types-grafana.git",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.74",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"jest": "^23.5.0",
"jsdom": "~9.12.0",
"mocha": "^3.2.0",
"ng-annotate-webpack-plugin": "^0.3.0",
"prunk": "^1.3.1",
"q": "^1.5.0",
"regenerator-runtime": "^0.12.1",
"style-loader": "^0.22.1",
"ts-jest": "^23.1.4",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"typescript": "^3.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"lodash": "^4.17.4"
},
"homepage": "https://github.com/simPod/grafana-json-datasource#readme"
}