-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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": "baidumap-panel",
"version": "1.0.0",
"description": "Baidumap Panel Plugin for Grafana",
"main": "src/module.js",
"scripts": {
"clean": "rm -r dist/*",
"lint": "eslint --color .",
"lint:watch": "onchange 'src/**/*.js' -- npm run lint",
"build": "grunt",
"prebuild": "npm run lint && npm run clean",
"build:watch": "onchange './src/**/*.js' './src/**/*.css' './src/**/*.html' './src/plugin.json' -- npm run build",
"test:watch": "karma start",
"test": "karma start --single-run"
},
"keywords": [
"baidumap",
"grafana",
"plugin",
"panel"
],
"author": "Damon Wu",
"license": "MIT",
"devDependencies": {
"babel": "~6.5.1",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-es2015-modules-systemjs": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"es6-shim": "^0.35.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"grunt": "~1.0.1",
"grunt-babel": "~6.0.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-uglify": "~2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-execute": "~0.2.2",
"grunt-systemjs-builder": "^0.2.5",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-expect": "^1.1.2",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-systemjs": "^0.15.0",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.1.0",
"onchange": "^3.2.1",
"systemjs": "^0.19.24"
},
"dependencies": {
"es6-module-loader": "^0.17.11",
"grafana-sdk-test": "^1.0.0",
"jquery": "^3.3.1",
"lodash": "~4.16.2"
}
}