forked from ManticoreGamesInc/platform-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
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
56
57
58
{
"name": "core-platform-documentation",
"version": "2.0.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": "remark .",
"lint:paths": "path-linter --config path-linter.json --colorize",
"lint": "npm run lint:md && npm run lint:paths"
},
"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.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"markdownlint-cli": "^0.23.1",
"prettier": "^2.0.5",
"remark": "^12.0.0",
"remark-cli": "^8.0.0",
"remark-frontmatter": "^2.0.0",
"remark-preset-lint-markdown-style-guide": "^3.0.0",
"remark-stringify": "^8.1.0"
},
"engines": {
"node": ">= 10"
}
}