This repository was archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 KB
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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "brewcalcs",
"version": "0.0.1",
"description": "Homebrew calculation helper library",
"author": "Ryan Chatterton <chatters@gmail.com> (http://rchatter.com/)",
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"flow": "flow",
"jest": "jest src",
"test": "yarn run flow && yarn run jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"precommit": "lint-staged && yarn test",
"prettier": "prettier --write \"src/**/*.js\"",
"flow-typed": "./node_modules/.bin/flow-typed",
"flow-typed:install": "./node_modules/.bin/flow-typed install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brew-code/brewcalcs.git"
},
"keywords": [
"homebrewing",
"beer",
"mash",
"BIAB",
"Brew In a Bag",
"brewing",
"calculation",
"calcs",
"javascript",
"node"
],
"bugs": {
"url": "https://github.com/brew-code/brewcalcs/issues"
},
"homepage": "https://github.com/brew-code/brewcalcs#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.75.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.2.0",
"prettier": "1.13.5",
"rollup": "^0.60.7"
},
"dependencies": {},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}