-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 2.51 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
{
"private": true,
"version": "6.2.10",
"workspaces": [
"ts/*"
],
"description": "Visual connectivity for webapps",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"init": "node ./install.js",
"clean": "rm -rf _apidoc_models/*;rm -rf _build_es6/*;rm -rf dist",
"build": "set -e;echo \"\n--- Running Typescript build\";npx tsc",
"babel": "echo \"--- Running Babel. This build target is just for debugging any build issues, and not part of the normal build\n\";./node_modules/.bin/babel ./ts --out-dir _build --extensions \".ts,.tsx\" --source-maps",
"package": "echo \"\n--- Building and packaging...\n\"; set -e;rm -rf dist;mkdir dist;npm run build;npm run rollup;npm run copy-defs;npm run copy-package-json;npm run copy-css",
"copy-css": "node ./scripts/copy-css.js",
"copy-package-json": "echo \"\n--- Copying package jsons into distribution directories...\n\"; node ./scripts/copy-package-json.js",
"copy-defs": "echo \"\n--- Copying typescript definitions into distribution directories...\n\"; node ./scripts/copy-typescript-defs.js",
"create-distribution": "set -e;npm run package;echo \"\n-- Building apidocs...\n\";npm run apidocs; echo \"\n-- Building distribution packages...\n\";node ./scripts/create-packages.js;",
"rollup": "echo \"\n--- Running Rollup...\n\"; rollup -c",
"rollup-dev": "rollup -c -w",
"link": "node scripts/link.js",
"apidocs": "node scripts/create-apidocs.js",
"update-versions": "node scripts/update-version.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jsplumb/community-edition.git"
},
"keywords": [
"javascript",
"svg",
"visual",
"connectivity"
],
"author": "jsPlumb ([email protected])",
"license": "(MIT OR GPL-2.0)",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@microsoft/api-documenter": "^7.13.39",
"@microsoft/api-extractor": "^7.18.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-loader": "^8.0.6",
"rollup": "^2.26.11",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "0.15.0",
"typescript": "^4.0.0"
},
"packages": [
"browser-ui"
]
}