-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "cryptocurrency-calculator-cli",
"version": "1.0.2",
"description": "Cryptocurrency Converter Calculator as command line util Edit",
"author": "Fabian Beuke <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"test": "sh test.sh"
},
"bin": {
"cryptocurrency-calculator-cli": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madnight/cryptocurrency-calculator-cli.git"
},
"bugs": {
"url": "https://github.com/madnight/cryptocurrency-calculator-cli/issues"
},
"homepage": "https://github.com/madnight/cryptocurrency-calculator-cli#readme",
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.2.0",
"eslint-config-cleanjs": "^4.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.1.1",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.7.0"
}
}