forked from ManticoreGamesInc/platform-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
54
55
{
"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 src/",
"lint:paths": "path-linter --config path-linter.json --colorize",
"lint": "npm run lint:md && npm run lint:paths",
"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"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://docs.coregames.com",
"devDependencies": {
"@attilagyongyosi/path-linter": "^2.1.5",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"husky": "4.3.8",
"lite-youtube-embed": "^0.2.0",
"markdownlint-cli": "^0.27.1",
"prettier": "^2.3.0"
},
"engines": {
"node": ">= 14"
}
}