-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "csvserver",
"version": "1.1.1",
"description": "Simple node-based CSV file server for Grafana/SimpleJSON datasource",
"main": "index.js",
"scripts": {
"test": "mocha --configfile test/test-default.ini"
},
"repository": {
"type": "git",
"url": "michaeldmoore-csvserver"
},
"keywords": [
"grafana",
"csv",
"simpleJSON",
"datasource"
],
"author": "Michael D Moore",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodemon": "^0.5.4",
"grunt-contrib-watch": "^1.1.0",
"grunt-js-test": "^2.0.3",
"mocha": "^7.1.2"
},
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"csvtojson": "^2.0.10",
"fast-csv": "^4.3.6",
"fastify": "^2.15.1",
"fs": "0.0.2",
"moment": "^2.24.0",
"pino-pretty": "^3.2.2",
"read-ini-file": "^3.0.0"
}
}