thermo
Version:
Faça conversão de Temperatura com o ThermoCLI.
47 lines (46 loc) • 995 B
JSON
{
"name": "thermo",
"version": "0.0.1",
"description": "Faça conversão de Temperatura com o ThermoCLI.",
"main": "./lib/thermo.js",
"scripts": {
"start": "node ./lib/thermo.js",
"compile": "babel --source-maps -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkal19/Thermo.git"
},
"bin": {
"thermo": "./lib/thermo.js"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"Thermo",
"ThermoCLI",
"celsius",
"fahrenheit",
"kelvin"
],
"author": "Gabriel Kalani",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkal19/ThermoCLI/issues"
},
"homepage": "https://github.com/gkal19/ThermoCLI#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"prompt": "^1.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"commander": "^2.9.0"
}
}