-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
60 lines (60 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
54
55
56
57
58
59
60
{
"name": "markdown-plus-plus",
"version": "3.4.0",
"description": "Markdown syntax highlighting for Notepad++, by customized UDL file (user defined language)",
"license": "MIT",
"private": true,
"main": "bin/mpp.js",
"bin": {
"mpp": "./bin/mpp.js",
"markdown-plus-plus": "./bin/markdown-plus-plus.js"
},
"directories": {
"bin": "./bin",
"doc": "docs",
"test": "test"
},
"files": [
"/bin/**/*",
"/build/**/*",
"/config/**/*",
"/udl/**/*",
"package.json",
"LICENSE.txt",
"README.md"
],
"//engines.node": "Minimum version to run mpp and build (but >=14 for dev).",
"//engines.npm": "Minimum version to use npx.",
"engines": {
"node": ">=4.0.0",
"npm": ">=5.2.0"
},
"scripts": {
"//build": "echo \"Build UDL files in <udl/> using config files in <config/>\"",
"build": "node ./build/build.js",
"//mpp": "echo \"Build UML XML file(s) in current working directory\"",
"mpp": "node ./bin/mpp.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Edditoria <[email protected]>",
"homepage": "https://github.com/Edditoria/markdown-plus-plus",
"repository": {
"type": "git",
"url": "git+https://github.com/Edditoria/markdown-plus-plus.git"
},
"bugs": {
"url": "https://github.com/Edditoria/markdown-plus-plus/issues"
},
"keywords": [
"notepad-plus-plus",
"udl",
"markdown",
"syntax-highlighting",
"notepadplusplus",
"npp"
],
"dependencies": {
"handlebars": "^4.7.7"
},
"devDependencies": {}
}