-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 875 Bytes
/
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
{
"name": "fahrenelsius",
"version": "1.0.2",
"description": "Convert degrees to Celsius or Fahrenheit",
"main": "app.js",
"scripts": {
"test": "eslint ./app.js && eslint ./conversion.js",
"deploy": "git push && npm publish"
},
"bin": {
"fahrenelsius": "./app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuriBrunetto/fahrenelsius.git"
},
"keywords": [
"convert",
"fahrenheit",
"celsius",
"degrees",
"fahrenelsius"
],
"author": "Yuri Brunetto <brunettoyuri@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YuriBrunetto/fahrenelsius/issues"
},
"homepage": "https://github.com/YuriBrunetto/fahrenelsius#readme",
"dependencies": {
"yargs": "^10.0.3"
},
"devDependencies": {
"eslint": "^4.13.1"
},
"engines": {
"node" : ">=6.0.0"
}
}