forked from punkave/albedo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 892 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
37
38
{
"name": "@waytohealth/albedo",
"version": "0.3.1",
"description": "node.js module for creating CSV reports from database queries",
"main": "albedo.js",
"homepage": "https://github.com/waytohealth/albedo",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/waytohealth/albedo.git"
},
"keywords": [
"report",
"mysql",
"data"
],
"author": "P'unk Ave",
"license": "MIT",
"bugs": {
"url": "https://github.com/waytohealth/albedo/issues"
},
"dependencies": {
"json2csv": "^4.3.4",
"moment": "^2.19.2",
"mysql": "^2.15.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1"
}
}