-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "tangerine-reporting",
"version": "1.0.0",
"description": "A node application that processes data and generates CSV.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tangerine-Community/Tangering-Reporting.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tangerine-Community/Tangering-Reporting/issues"
},
"homepage": "https://github.com/Tangerine-Community/Tangering-Reporting#readme",
"engines": {
"node": "8.4.0",
"npm": "5.3.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.17.2",
"chalk": "^2.0.1",
"commander": "^2.11.0",
"errorhandler": "^1.5.0",
"exceljs": "^0.4.14",
"express": "^4.15.3",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"morgan": "^1.8.2",
"nano": "^6.4.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0"
},
"bin": {
"tangerine-reporting": "./cli.js"
}
}