-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "grafana-typescript-template-datasource",
"version": "1.0.0",
"description": "TypeScript Template Data Source for Grafana. A starter template for creating data sources written in TypeScript for Grafana.",
"scripts": {
"build": "grunt",
"test": "./node_modules/karma/bin/karma start"
},
"author": "Grafana Labs",
"license": "GPL",
"dependencies": {
"lodash": "^4.17.4",
"moment": "^2.18.1",
"q": "^1.5.0",
"systemjs": "^0.19.47"
},
"devDependencies": {
"@types/lodash": "^4.14.74",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-typescript": "^0.8.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-expect": "^1.1.3",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-systemjs": "^0.16.0",
"plugin-typescript": "^7.1.0",
"sinon": "^3.2.1",
"systemjs-plugin-css": "^0.1.35"
}
}