forked from MarkBind/markbind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.93 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
{
"name": "markbind-cli",
"version": "2.14.1",
"description": "Command line interface for MarkBind",
"keywords": [
"mark",
"markdown",
"markbind",
"fragment",
"reusable",
"CLI"
],
"homepage": "https://markbind.org",
"license": "MIT",
"main": "index.js",
"bin": {
"markbind": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MarkBind/markbind.git"
},
"scripts": {
"autolint": "npm run lintfix && npm run csslintfix",
"build:components": "cd packages/vue-components && npm run build",
"ci:all": "npm ci && cd packages/vue-components && npm ci",
"ciwin:all": "npm ci && npm run install:components",
"csslint": "stylelint **/*.css",
"csslintfix": "stylelint **/*.css --fix",
"install:all": "npm install && npm run install:core && npm run install:components",
"install:components": "cd packages/vue-components && npm install",
"install:core": "npm install packages/core",
"jest": "jest",
"lint": "npm run lint:cli && npm run lint:components",
"lint:cli": "eslint .",
"lint:components": "cd packages/vue-components && npm run lint",
"lintfix": "npm run lintfix:cli && npm run lintfix:components",
"lintfix:cli": "eslint . --fix",
"lintfix:components": "cd packages/vue-components && npm run lintfix",
"pretest": "npm run lint && npm run csslint",
"pretestwin": "npm run lint && npm run csslint",
"test": "npm run test:cli && npm run test:components",
"test:cli": "jest && cd test/functional && ./test.sh",
"test:components": "cd packages/vue-components && npm run test",
"testwin": "npm run testwin:cli && npm run test:components",
"testwin:cli": "jest && cd test/functional && test.bat",
"updatetest": "npm run updatetest:cli && npm run updatetest:components",
"updatetest:cli": "cd test/functional && ./update.sh",
"updatetest:components": "cd packages/vue-components && npm run updatesnapshot",
"updatetestwin": "npm run updatetestwin:cli && npm run updatetest:components",
"updatetestwin:cli": "cd test/functional && update.bat",
"watch:components": "cd packages/vue-components && npm run watch"
},
"dependencies": {
"@markbind/core": "file:packages/core",
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"cheerio": "^0.22.0",
"chokidar": "^3.3.0",
"commander": "^3.0.2",
"figlet": "^1.2.4",
"find-up": "^4.1.0",
"fs-extra-promise": "^1.0.1",
"live-server": "^1.2.1",
"lodash": "^4.17.15",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"diff": "^4.0.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-lodash": "^7.1.0",
"ignore": "^5.1.4",
"istextorbinary": "^3.3.0",
"jest": "^25.1.0",
"memfs": "^3.0.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"walk-sync": "^2.0.2"
}
}