forked from ManticoreGamesInc/platform-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "core-platform-documentation",
"version": "2.1.0",
"description": "Documentation for the Core Platform",
"keywords": [
"mkdocs",
"documentation",
"core",
"lua",
"core documentation",
"core games",
"core api",
"core lua",
"core scripting"
],
"main": "mkdocs.yml",
"private": true,
"scripts": {
"start": "mkdocs serve",
"build": "mkdocs build",
"lint:md": "markdownlint-cli2 'src/**/*.md'",
"lint:paths": "path-linter --config path-linter.json --colorize",
"lint:prose": "vale src",
"lint": "npm run lint:md && npm run lint:paths && npm run lint:prose",
"update_dump": "python update"
},
"repository": {
"type": "git",
"url": "https://github.com/ManticoreGamesInc/platform-documentation.git"
},
"author": "Manticore Games, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/ManticoreGamesInc/platform-documentation/issues"
},
"simple-git-hooks": {
"pre-commit": "npm run lint"
},
"homepage": "https://docs.coregames.com",
"devDependencies": {
"@attilagyongyosi/path-linter": "^2.1.5",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"lite-youtube-embed": "^0.2.0",
"markdownlint-cli2": "^0.5.1",
"prettier": "^2.7.1"
},
"engines": {
"node": ">= 16"
}
}