-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.75 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
{
"name": "specif-viewer",
"version": "1.1",
"description": "An app for your web-browser to view, edit and transform system specifications.",
"main": "src/views/view.html",
"scripts": {
"test": "jest --coverage",
"clean": "shx rm -rf coverage dist",
"build": "(tsc && npm run _postbuild) || npm run _postbuild",
"start": "node start.js",
"open_browser_macos": "shx open ./dist/views/view.html || echo 'Could not open Safari browser. Please open ./dist/view.html manually.'",
"open_browser_linux": "shx xdg-open ./dist/views/view.html || echo 'Could not open XDG browser. Please open ./dist/view.html manually.'",
"open_browser_win": "explorer 'dist\\views\\view.html' || echo 'Could not open default browser. Please open ./dist/view.html manually.'",
"_postbuild": "npm run _copy_assets_folder & npm run _copy_apps",
"_copy_assets_folder": "shx mkdir ./dist/assets/ & shx cp -R ./src/assets ./dist/",
"_copy_config_folder": "shx mkdir ./dist/config/ & shx cp -R ./src/config/*/**.json ./dist/config/locales/",
"_copy_views_folder": "shx mkdir ./dist/views/ & shx cp -R ./src/views/* ./dist/views/",
"_copy_apps": "shx cp -R ./src/*.html ./dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GfSE/SpecIF-Viewer.git"
},
"keywords": [
"system-specifications",
"models",
"uml",
"sysml"
],
"author": "adesso SE, enso managers gmbh",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GfSE/SpecIF-Viewer/issues"
},
"homepage": "https://github.com/GfSE/SpecIF-Viewer#readme",
"devDependencies": {
"@types/jest": "^26.0.12",
"jest": "^27.2.5",
"shx": "^0.3.2",
"typescript": "^4.0.2"
},
"dependencies": {
"@types/jquery": "^3.5.16"
}
}