forked from brewcomputer/brewcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.46 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
55
{
"name": "brewcalc",
"version": "0.1.6",
"description": "A modern (ES6) functional JavaScript library for brewing calculations.",
"main": "lib/brewcalc.min.js",
"scripts": {
"flow": "flow",
"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"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/app/"
]
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "1.7.0",
"eslint": "3.19.0",
"eslint-loader": "1.7.1",
"eslint-plugin-prettier": "^2.2.0",
"flow-babel-webpack-plugin": "^1.1.0",
"flow-bin": "^0.53.1",
"jest": "^20.0.4",
"pixl-xml": "^1.0.13",
"prettier": "^1.6.0",
"webpack": "3.1.0",
"yargs": "7.1.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"
}