-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 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
{
"name": "brewingcalcs",
"version": "0.1.4",
"description": "Javascript library to help calculate various metrics when brewing or recipe planning.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "npm run build && tap test/*.spec.js",
"build": "rm -Rf dist/* && babel -d dist src",
"prepublish": "npm run build"
},
"keywords": [
"beer",
"brewing",
"recipe",
"bitterness",
"original",
"gravity",
"final",
"gravity",
"sparge",
"mash",
"brew",
"strike",
"infusion",
"decoction"
],
"repository": {
"type": "git",
"url": "https://github.com/reedodeneal/brewingcalcs.git"
},
"author": "Reed Odeneal",
"license": "ISC",
"bugs": {
"url": "https://github.com/reedodeneal/brewingcalcs/issues"
},
"homepage": "https://github.com/reedodeneal/brewingcalcs",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"tap": "^10.3.2"
},
"dependencies": {
"convert-units": "^2.2.0"
},
"files": [
"dist"
]
}