forked from openbrewerydb/openbrewerydb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "openbrewerydb",
"version": "0.0.1",
"description": "An open-source dataset of breweries, cideries, brewpubs, and bottleshops.",
"author": "Chris J Mears",
"license": "MIT",
"bugs": {
"url": "https://github.com/openbrewerydb/openbrewerydb/issues"
},
"homepage": "https://github.com/openbrewerydb/openbrewerydb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openbrewerydb/openbrewerydb.git"
},
"scripts": {
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"csv:combine": "ts-eager ./src/combine-csv.ts",
"csv:split": "ts-eager ./src/split-csv.ts",
"generate:json": "ts-eager ./src/generate-json.ts",
"generate:sql": "ts-eager ./src/generate-sql.ts",
"generate:stats": "ts-eager ./src/generate-stats.ts",
"validate": "ts-eager --unhandled-rejections=strict ./src/validate-csv.ts",
"workflow:maintain": "run-s validate csv:combine csv:split generate:json generate:sql"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mustache": "^4.2.1",
"@types/papaparse": "^5.3.2",
"@types/uuid": "^9.0.1",
"all-contributors-cli": "^6.20.0",
"ansi-regex": ">=5.0.1",
"date-fns": "^2.29.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"glob": "^7.1.6",
"glob-promise": "^4.1.0",
"mustache": "^4.2.0",
"npm-run-all": "^4.1.5",
"papaparse": "^5.2.0",
"pg-promise": "^10.10.1",
"slugify": "^1.4.0",
"ts-eager": "^2.0.2",
"typescript": "^4.5.5",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}