forked from NoumanSaleem/grafana-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 997 Bytes
/
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-dsl",
"version": "1.0.15",
"description": "A DSL for programmatically generating Grafana dashboard JSON.",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib",
"test": "./node_modules/.bin/mocha --recursive --compilers js:babel-register test/**/*.test.js",
"prepublish": "npm run build"
},
"author": "Nouman Saleem",
"license": "ISC",
"homepage": "https://github.com/NoumanSaleem/grafana-dsl#readme",
"bugs": {
"url": "https://github.com/NoumanSaleem/grafana-dsl/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/NoumanSaleem/grafana-dsl.git"
},
"keywords": [
"grafana", "grafana dashboard", "grafana dashboard json", "grafana json"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
},
"babel": {
"presets": [
"es2015"
]
}
}