-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.09 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
49
50
51
52
{
"name": "money-conversion",
"version": "0.0.6",
"description": "money converter via terminal",
"main": "src/app.js",
"bin": {
"money-conversion": "src/app.js"
},
"preferGlobal": true,
"scripts": {
"send": "npm publish --access=public",
"start": "node ./src/app.js",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"test": "jest src/"
},
"keywords": [
"currency",
"money",
"conversão",
"divisas",
"dinheiro",
"currency",
"exchange",
"rates",
"convert",
"fixer",
"currencylayer",
"money",
"$$$",
"currencies"
],
"author": {
"name": "Jairo Duarte",
"email": "alfredojairo17@hotmail.com",
"url": "https://jairoduarte.github.io/resume/index.html"
},
"license": "MIT",
"devDependencies": {
"eslint": "^5.10.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^23.6.0"
},
"dependencies": {
"chalk": "^2.4.1",
"currency-conversion": "0.2.4",
"figlet": "^1.2.1",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"ora": "^3.0.0"
}
}