-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "eusda",
"version": "3.0.0",
"description": "USDA command line downloader",
"main": "app.js",
"scripts": {
"start": "node app.js --help",
"config": "node app.js config",
"download-help": "node app.js download --help",
"insert-help": "node app.js insert --help",
"lint": "npx eslint lib/",
"lint:fix": "npx eslint --fix lib/",
"mongo:status": "sudo service mongod status",
"mongo:restart": "sudo service mongod restart",
"mongo:start": "sudo service mongod start",
"test": "mocha"
},
"author": {
"name": "Kathrina Arocha Umpiérrez",
"email": "alu0100913293@ull.edu.es"
},
"contributors": [
{
"name": "Coromoto León Hernándex",
"email": "cleon@ull.edu.es"
},
{
"name": "Casiano Rodríguez León",
"email": "crguezl@ull.edu.es"
}
],
"bin": {
"eusda": "./app.js"
},
"keywords": [
"cli",
"mongodb",
"usda",
"nutrition"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PAL-ULL/eusda.git"
},
"license": "ISC",
"dependencies": {
"adm-zip": "^0.4.14",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"config": "^3.3.1",
"excelresolver": "^1.0.1",
"figlet": "^1.4.0",
"inquirer": "^7.1.0",
"js-beautify": "^1.11.0",
"mongo-ssh": "^1.0.0",
"mongodb": "^3.5.6",
"mongojs": "^3.1.0",
"mongoose": "^5.9.2",
"mongoose-ssh": "^0.1.0",
"tunnel-ssh": "^4.1.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commander": "^4.1.1",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.5.4",
"mocha": "^7.1.2",
"morgan": "^1.9.1"
},
"bugs": {
"url": "https://github.com/PAL-ULL/eusda/issues"
},
"homepage": "https://github.com/PAL-ULL/eusda#readme"
}