-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "xmindmark",
"version": "0.3.2",
"description": "A mind mapping markup language, compatible with markdown, convertable to/from xmind.",
"bin": {
"xmindmark": "./dist/src/cli/index.js"
},
"main": "./dist/src/index.js",
"files": [
"dist/**/*"
],
"types": "./dist/src/index.d.ts",
"scripts": {
"serve": "tsc --watch --sourceMap",
"build": "yarn build:tsc && yarn build:umd",
"build:tsc": "tsc",
"build:umd": "esbuild ./src/index.umd.ts --bundle --format=iife --outfile=./dist/umd/xmindmark.min.js --minify",
"serve:playground": "cd playground && yarn && yarn serve",
"build:playground": "cd playground && yarn && yarn build",
"test": "rimraf ./dist && npm run build && mocha --recursive --color dist/**/*.spec.js",
"prepublishOnly": "rimraf ./dist && npm run build"
},
"keywords": [
"xmindmark",
"xmind",
"markdown",
"mindmap",
"mind map",
"mind mapping"
],
"repository": {
"type": "git",
"url": "https://github.com/xmindltd/xmindmark"
},
"bugs": {
"url": "https://github.com/xmindltd/xmindmark/issues"
},
"author": "XMind ltd.",
"maintainers": [
{
"name": "xmind_official",
"email": "[email protected]"
},
{
"name": "parrotdance",
"email": "[email protected]"
},
{
"name": "Brian Sun",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"commander": "^8.3.0",
"fs-extra": "^10.0.0",
"jszip": "^3.7.1",
"nanoid": "^3.3.2",
"puppeteer-core": "^13.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.14.36",
"joi": "^17.4.2",
"mocha": "^9.2.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}