Skip to content
Snippets Groups Projects
package.json 4.68 KiB
Newer Older
francois.grand's avatar
francois.grand committed
{
  "name": "fr.irstea.cassiopee",
  "displayName": "Cassiopée",
  "description": "Hydraulic calculators",
  "author": "Irstea",
  "version": "4.4.2",
francois.grand's avatar
francois.grand committed
  "license": "MIT",
francois.grand's avatar
francois.grand committed
  "scripts": {
    "lint": "ng lint",
    "e2e": "ng e2e",
    "electron": "npm run update-dist-index-mimetypes && electron .",
    "electron-builder": "npm run update-dist-index-mimetypes && electron-builder",
    "start": "npm run preprocess && ng serve --host 0.0.0.0 --poll 5000",
    "prod": "npm run preprocess && ng serve --host 0.0.0.0 --prod",
    "build": "npm run preprocess && ng build --prod --build-optimizer=false",
    "build-cordova": "npm run preprocess && ng build --prod --build-optimizer=false && npm run update-dist-index-mimetypes && npm run add-cordova-js",
    "add-cordova-js": "sed -i '/<\\/title>/a <script type=\"text/javascript\" src=\"cordova.js\"></script>' dist/index.html",
    "update-dist-index-mimetypes": "node ./update-dist-index-mimetypes.js",
    "copy-electron-icon-windows": "copy \"src\\android-chrome-512x512.png\" \"electron\\icon.png\" /Y",
    "release-linux": "npm run build && npm run update-dist-index-mimetypes && electron-builder",
    "release-windows": "rd /s /q release & ng build --prod --build-optimizer=false && npm run update-dist-index-mimetypes && npm run copy-electron-icon-windows && npm run electron-builder",
    "release-android": "npm run build-cordova && cordova platform add android; rm dist/assets/docs-fr/sitemap.xml.gz && cordova build android && mv platforms/android/app/build/outputs/apk/debug/app-debug.apk release/cassiopee.apk",
mathias.chouet's avatar
mathias.chouet committed
    "e2equick": "ng e2e --dev-server-target=",
    "jalhyd": "rm -f node_modules/jalhyd && cd ../jalhyd && npm run build && cd ../nghyd && npm install ../jalhyd",
    "mathjax": "mkdir -p docs-fr/javascripts/mathjax && rsync -azR --delete `cat rsync-mathjax-files` docs-fr/javascripts/mathjax",
    "mkdocs": "npm run mathjax && find docs-fr/javascripts/ -name '*.md' -type f -delete && python3 -m mkdocs build",
    "preprocess": "node preprocessors.js && npm run mkdocs",
    "viz": "tsviz -recursive src/ nghyd_class_diagram.png",
    "compodoc-patch": "sed -i '/Application.prototype.detectAngularJSProjects = function () {/a return false; // patch cracra, voir https://github.com/compodoc/compodoc/issues/667' node_modules/@compodoc/compodoc/dist/index-cli.js",
    "compodoc": "nodejs node_modules/@compodoc/compodoc/bin/index-cli.js -p src/tsconfig.app.json -s --language fr-FR -d compodoc-fr"
francois.grand's avatar
francois.grand committed
  },
francois.grand's avatar
francois.grand committed
  "private": true,
francois.grand's avatar
francois.grand committed
  "dependencies": {
mathias.chouet's avatar
mathias.chouet committed
    "xlsx": "^0.14.4",
francois.grand's avatar
francois.grand committed
  },
  "devDependencies": {
mathias.chouet's avatar
mathias.chouet committed
  },
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {}
    },
    "platforms": [
      "android"
    ]