forked from MarkBind/markbind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.73 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
95
96
{
"name": "markbind-cli",
"version": "2.13.0",
"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",
"@primer/octicons": "^9.3.1",
"@sindresorhus/slugify": "^0.9.1",
"bluebird": "^3.7.2",
"bootswatch": "^4.4.1",
"chalk": "^3.0.0",
"cheerio": "^0.22.0",
"chokidar": "^3.3.0",
"commander": "^3.0.2",
"fastmatter": "^2.1.1",
"figlet": "^1.2.4",
"find-up": "^4.1.0",
"fs-extra-promise": "^1.0.1",
"gh-pages": "^2.1.1",
"highlight.js": "^9.14.2",
"htmlparser2": "^3.10.1",
"ignore": "^5.1.4",
"js-beautify": "~1.7.5",
"live-server": "^1.2.1",
"lodash": "^4.17.15",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"markdown-it-attrs": "^2.4.1",
"markdown-it-emoji": "^1.4.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-linkify-images": "^1.1.1",
"markdown-it-mark": "^2.0.0",
"markdown-it-regexp": "^0.4.0",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-task-lists": "^1.4.1",
"markdown-it-video": "^0.6.3",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"nunjucks": "^3.2.0",
"path-is-inside": "^1.0.2",
"progress": "^2.0.3",
"walk-sync": "^2.0.2",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^3.10.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",
"csslintfix": "./node_modules/.bin/stylelint **/*.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": "^4.0.1",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-lodash": "^6.0.0",
"jest": "^25.1.0",
"memfs": "^3.0.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0"
}
}