-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 2.33 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
{
"name": "common-beer-format",
"version": "2.6.0",
"description": "An implementation of the BeerXML spec in multiple formats",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"update-toc": "doctoc . -u --github",
"markdownlint": "markdownlint '**/*.md' --ignore node_modules --disable MD013 --disable MD024",
"json-schema/validate/equipment": "ajv validate --strict=false -s exports/equipment/json_schema/equipment-wrapper.json -d resources/json/equipment.json",
"json-schema/validate/fermentables": "ajv validate --strict=false --spec=draft2020 -s exports/fermentables/json_schema/fermentables-wrapper.json -d resources/json/fermentables.json",
"json-schema/validate/hops": "ajv validate --strict=false --spec=draft2020 -s exports/hops/json_schema/hops-wrapper.json -d resources/json/hops.json",
"json-schema/validate/mash": "ajv validate --strict=false --spec=draft2020 -s exports/mash/json_schema/mash-wrapper.json -d resources/json/mash.json",
"json-schema/validate/miscs": "ajv validate --strict=false --spec=draft2020 -s exports/miscs/json_schema/miscs-wrapper.json -d resources/json/miscs.json",
"json-schema/validate/recipes": "ajv validate --strict=false --spec=draft2020 -s exports/recipes/json_schema/recipes-wrapper.json -d resources/json/recipes.json",
"json-schema/validate/styles": "ajv validate --strict=false --spec=draft2020 -s exports/styles/json_schema/style-wrapper.json -d resources/json/style.json",
"json-schema/validate/waters": "ajv validate --strict=false --spec=draft2020 -s exports/waters/json_schema/waters-wrapper.json -d resources/json/waters.json",
"json-schema/validate/yeasts": "ajv validate --strict=false --spec=draft2020 -s exports/yeasts/json_schema/yeasts-wrapper.json -d resources/json/yeasts.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wall-Brew-Co/common-beer-format.git"
},
"author": "Wall Brew Co",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wall-Brew-Co/common-beer-format/issues"
},
"homepage": "https://github.com/Wall-Brew-Co/common-beer-format#readme",
"devDependencies": {
"ajv-cli": "^5.0.0",
"doctoc": "^2.2.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cljs-test": "^0.1.0",
"markdownlint-cli": "^0.42.0",
"minimist": ">=1.2.6"
}
}