UNPKG

1.99 kBJSONView Raw
1{
2 "name": "jsmind",
3 "version": "0.8.3",
4 "description": "jsMind is a pure javascript library for mindmap, it base on html5 canvas. jsMind was released under BSD license, you can embed it in any project, if only you observe the license.",
5 "main": "es6/jsmind.js",
6 "exports": {
7 ".": "./es6/jsmind.js",
8 "./draggable-node": "./es6/jsmind.draggable-node.js",
9 "./screenshot": "./es6/jsmind.screenshot.js",
10 "./style/jsmind.css": "./style/jsmind.css"
11 },
12 "directories": {
13 "doc": "docs",
14 "example": "example"
15 },
16 "scripts": {
17 "server": "http-server",
18 "build": "rollup -c .config/rollup.config.js",
19 "test": "NODE_OPTIONS=--experimental-vm-modules jest",
20 "test-legacy": "jest tests/legacy",
21 "test-es6": "NODE_OPTIONS=--experimental-vm-modules jest tests/unit",
22 "format": "prettier --config .config/prettierrc.json --ignore-path .config/prettierignore --write .",
23 "format-check": "prettier --config .config/prettierrc.json --ignore-path .config/prettierignore --check ."
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/hizzgdev/jsmind.git"
28 },
29 "author": {
30 "name": "hizzgdev@163.com"
31 },
32 "license": "BSD-3-Clause",
33 "bugs": {
34 "url": "https://github.com/hizzgdev/jsmind/issues"
35 },
36 "homepage": "https://github.com/hizzgdev/jsmind#readme",
37 "keywords": [
38 "jsmind",
39 "mindmap"
40 ],
41 "maintainers": [
42 {
43 "name": "hizzgdev",
44 "email": "hizzgdev@163.com"
45 }
46 ],
47 "devDependencies": {
48 "http-server": "^14.1.1",
49 "jest": "^28.1.0",
50 "jest-environment-jsdom": "^28.1.0",
51 "prettier": "2.6.2",
52 "rollup": "^2.75.5",
53 "rollup-plugin-cleanup": "^3.2.1",
54 "rollup-plugin-terser": "^7.0.2"
55 },
56 "jest": {
57 "verbose": true,
58 "testEnvironment": "jsdom"
59 }
60}