forked from brewcomputer/brewcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.25 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
{
"name": "brewcalc",
"version": "0.1.6",
"description": "A modern (ES6) functional JavaScript library for brewing calculations.",
"main": "lib/brewcalc.js",
"browser": "lib/brewcalc.min.js",
"scripts": {
"flow": "flow",
"build": "webpack --env build",
"build:app": "webpack --config webpack.config.app.js",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"pack": "npm pack && mv -v ./brewcalc-* app/brewcalc.tgz"
},
"files": [
"/lib"
],
"directories": {
"lib": "./lib"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"babel-core": "^7.0.0-0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"babel-loader": "^8.0.5",
"flow-bin": "^0.97.0",
"jest": "23.6.0",
"prettier": "^1.17.0",
"prettier-loader": "^2.1.1",
"webpack": "4.28.3",
"webpack-cli": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brewcomputer/brewcalc.git"
},
"keywords": [],
"author": "Yuriy Krutilin",
"license": "MIT",
"bugs": {
"url": "https://github.com/brewcomputer/brewcalc/issues"
},
"homepage": "https://github.com/brewcomputer/brewcalc"
}