-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "windrose-panel",
"version": "0.7.0",
"description": "Wind Rose Plugin for Grafana",
"scripts": {
"build": "grunt",
"test": "./node_modules/karma/bin/karma start",
"precommit": "pretty-quick --staged",
"pretty": "prettier --write src/**/*.ts"
},
"author": "ryantxu",
"license": "MIT",
"keywords": ["plotly", "scatter", "grafana", "plugin", "panel"],
"repository": {
"type": "git",
"url": ""
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"useTabs": false,
"printWidth": 90,
"bracketSpacing": false,
"semi": true
},
"dependencies": {
"lodash": "^4.17.4",
"moment": "^2.18.1",
"percentile": "^1.2.0",
"plotly.js": "^1.35",
"q": "^1.5.0",
"systemjs": "^0.19.47"
},
"devDependencies": {
"@types/lodash": "^4.14.74",
"@types/plotly.js": "^1.35.0",
"grafana-sdk-mocks": "github:grafana/grafana-sdk-mocks",
"grunt": "^1.0.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-string-replace": "^1.3",
"grunt-ts": "^6.0.0-beta.17",
"grunt-tslint": "^5.0.1",
"husky": "^0.14.3",
"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",
"load-grunt-tasks": "^3.5.2",
"plugin-typescript": "^7.1.0",
"prettier": "1.10.2",
"pretty-quick": "^1.4.1",
"sinon": "^3.2.1",
"systemjs-plugin-css": "^0.1.35",
"tslint": "^5.8.0",
"typescript": "^2.8.1"
}
}