forked from cedoor/mmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "mmp",
"version": "0.2.48",
"description": "JavaScript library to draw mind maps.",
"keywords": [
"mmp",
"mindmap",
"node",
"branch",
"map",
"mind",
"infovis"
],
"homepage": "https://github.com/Mindmapp/mmp",
"license": "MIT",
"author": {
"name": "Omar Desogus",
"email": "[email protected]",
"url": "https://cedoor.dev"
},
"main": "build/mmp.min.js",
"repository": {
"type": "git",
"url": "https://github.com/Mindmapp/mmp.git"
},
"scripts": {
"start": "rollup -c -w",
"docs": "typedoc ./src --out ./docs --module umd",
"build": "rollup -c --environment BUILD:production && uglifyjs build/mmp.js --comments -c -m -o build/mmp.min.js",
"prepare": "npm run build"
},
"dependencies": {
"d3": "5.5.0",
"tslib": "^2.3.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/d3": "5.9.0",
"@types/uuid": "8.3.1",
"chai": "4.1.2",
"mocha": "5.2.0",
"rollup": "1.2.4",
"rollup-plugin-json": "3.0.0",
"rollup-plugin-livereload": "0.6.0",
"rollup-plugin-serve": "0.4.2",
"rollup-plugin-typescript2": "0.16.1",
"typedoc": "0.11.1",
"typescript": "3.8.3",
"uglify-js": "3.14.2"
}
}