forked from edm00se/awesome-board-games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "awesome-board-games",
"version": "1.0.0",
"description": "> A curated list of awesome board games!",
"scripts": {
"dev": "npm run pre-prod-build && vitepress dev .",
"build": "cross-env NODE_ENV=production vitepress build .",
"test": "run-s lint lint-md",
"lint": "awesome-lint",
"lint-md": "remark --frail .",
"format": "prettier readme.md --write",
"pre-prod-build": "chmod +x .pre-prod-build.sh &&./.pre-prod-build.sh",
"post-prod-build": "chmod +x .post-prod-build.sh &&./.post-prod-build.sh",
"rm:readme": "rm readme.md",
"vercel-build": "run-s pre-prod-build rm:readme build post-prod-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edm00se/awesome-board-games.git"
},
"keywords": [],
"author": "Eric McCormick",
"license": "CC0",
"bugs": {
"url": "https://github.com/edm00se/awesome-board-games/issues"
},
"homepage": "https://github.com/edm00se/awesome-board-games#readme",
"devDependencies": {
"awesome-lint": "^0.18.5",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"remark-cli": "^12.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-validate-links": "^13.0.0",
"vitepress": "^0.22.4"
},
"remarkConfig": {
"plugins": [
"remark-validate-links",
"remark-lint-no-dead-urls"
]
}
}