-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "converture",
"version": "0.2.0",
"description": "Convert temperatures (Kelvin, Celsius and Fahrenheit)",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"build": "babel src -d dist --ignore test.js",
"dev": "babel src -d dist --ignore test.js -w",
"prepublish": "npm run build",
"release": "np",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zsoltime/converture.git"
},
"keywords": [
"convert",
"conversion",
"temperature",
"kelvin",
"celsius",
"fahrenheit",
"thermo",
"thermometer",
"weather"
],
"author": {
"name": "Zsolt Meszaros",
"url": "https://github.com/zsoltime"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zsoltime/converture/issues"
},
"homepage": "https://github.com/zsoltime/converture#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^22.4.3",
"np": "^2.20.1"
},
"dependencies": {}
}