-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "homebrewlib",
"version": "1.5.0",
"description": "A JavaScript library for homebrew recipe calculations",
"main": "index.js",
"scripts": {
"build": "./pack",
"test": "mocha test/index.js --reporter mochawesome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/floriandanielit/homebrewlib.git"
},
"keywords": [
"homebrewing",
"recipe",
"calculation",
"mashing",
"boiling",
"fermentation",
"hops",
"malts",
"yeast"
],
"author": "Florian Daniel <mail@floriandaniel.it> (http://floriandaniel.it)",
"license": "MIT",
"bugs": {
"url": "https://github.com/floriandanielit/homebrewlib/issues"
},
"homepage": "https://github.com/floriandanielit/homebrewlib#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^5.0.0",
"mochawesome": "^3.0.2"
}
}