forked from markmap/markmap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.45 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.45 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
59
60
61
62
63
64
65
66
{
"name": "markmap-lib",
"version": "0.7.11",
"description": "Visualize your Markdown as mindmaps with Markmap",
"author": "Gerald <i@gerald.top>",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"bin": {
"markmap": "bin/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "gulp dev",
"clean": "gulp clean",
"build:js": "gulp build",
"prebuild": "npm run ci && npm run clean",
"prepublishOnly": "npm run build",
"ci": "npm run lint",
"build": "tsc && npm run build:js",
"lint": "eslint --ext .ts ."
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"unpkg": "dist/browser/view.min.js",
"jsdelivr": "dist/browser/view.min.js",
"files": [
"bin",
"dist",
"types"
],
"keywords": [
"markdown",
"markmap",
"mindmap"
],
"typings": "types/index.d.ts",
"repository": "git@github.com:gera2ld/markmap-lib.git",
"devDependencies": {
"@gera2ld/plaid": "~2.0.2",
"@gera2ld/plaid-common-ts": "~2.0.2",
"@gera2ld/plaid-rollup": "~2.0.2",
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-replace": "^1.0.0",
"husky": "^4.2.5"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"@types/d3": "^5.7.2",
"commander": "^5.1.0",
"d3": "^5.16.0",
"d3-flextree": "^2.1.1",
"open": "^7.0.3",
"remarkable": "^2.0.0"
}
}