-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
executable file
·54 lines (54 loc) · 1.6 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
52
53
54
{
"name": "brewcalc",
"version": "0.2.4",
"description": "A modern (ES6) functional JavaScript library for brewing calculations.",
"main": "lib/index.js",
"scripts": {
"compile": "npx tsc",
"build": "webpack --env build",
"build:dev": "webpack --env dev",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"pack": "yarn compile && npm pack",
"pack:app": "yarn run pack && mv -v ./brewcalc-* app/brewcalc.tgz"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-transform-react-jsx": "7.14.5",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-typescript": "7.14.5",
"@beerjson/beerjson": "1.0.0",
"@types/jest": "26.0.24",
"babel-core": "^7.0.0-0",
"babel-jest": "26.6.3",
"jest": "26.6.3",
"pixl-xml": "^1.0.13",
"ts-loader": "8.3.0",
"typescript": "4.3.5",
"webpack": "4.46.0",
"webpack-cli": "4.9.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"
}