forked from MarkBind/markbind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "markbind-cli",
"version": "2.5.3",
"description": "Command line interface for MarkBind",
"main": "index.js",
"bin": {
"markbind": "./index.js"
},
"keywords": [
"mark",
"markdown",
"markbind",
"fragment",
"reusable",
"CLI"
],
"author": "Jiang Sheng <[email protected]>",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.7.2",
"@sindresorhus/slugify": "^0.8.0",
"bluebird": "^3.4.7",
"bootswatch": "^4.3.1",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"chokidar": "^2.1.5",
"commander": "^2.9.0",
"ejs": "^2.5.5",
"fastmatter": "^2.1.1",
"figlet": "^1.2.0",
"find-up": "^2.1.0",
"fs-extra-promise": "^0.4.1",
"gh-pages": "^2.0.1",
"highlight.js": "^9.10.0",
"htmlparser2": "MarkBind/htmlparser2#v3.10.0-markbind.1",
"ignore": "^3.2.0",
"js-beautify": "^1.6.12",
"live-server": "^1.2.1",
"lodash": "^4.17.11",
"markdown-it": "^8.3.0",
"markdown-it-anchor": "^5.0.2",
"markdown-it-attrs": "^2.3.2",
"markdown-it-emoji": "^1.3.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-linkify-images": "^1.1.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-regexp": "^0.4.0",
"markdown-it-table-of-contents": "^0.4.3",
"markdown-it-task-lists": "^1.4.1",
"markdown-it-video": "^0.4.0",
"nunjucks": "^3.2.0",
"path-is-inside": "^1.0.2",
"progress": "^2.0.0",
"walk-sync": "^0.3.1",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MarkBind/markbind.git"
},
"scripts": {
"autolint": "npm run lintfix && npm run csslintfix",
"csslint": "./node_modules/.bin/stylelint **/*.css !**/*.min.css",
"csslintfix": "./node_modules/.bin/stylelint **/*.css !**/*.min.css --fix",
"jest": "jest",
"lint": "./node_modules/.bin/eslint .",
"lintfix": "./node_modules/.bin/eslint . --fix",
"pretest": "npm run lint && npm run csslint",
"pretestwin": "npm run lint && npm run csslint",
"test": "jest && cd test/functional && ./test.sh",
"testwin": "jest && cd test/functional && test.bat",
"updatetest": "cd test/functional && ./update.sh",
"updatetestwin": "cd test/functional && update.bat"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"test/functional"
]
},
"devDependencies": {
"diff": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-lodash": "^5.1.0",
"jest": "^24.8.0",
"memfs": "^2.8.0",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0"
}
}