UNPKG

@deltares/fews-web-oc-utils

Version:

Util Library for common Web OC functionality

80 lines (79 loc) 2.2 kB
{ "name": "@deltares/fews-web-oc-utils", "version": "1.0.1", "description": "Util Library for common Web OC functionality", "author": { "name": "Werner Kramer", "email": "werner.kramer@deltares.nl" }, "keywords": [ "FEWS", "PI REST Service", "Web Operator Client", "Web OC" ], "license": "MIT", "type": "module", "exports": { "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" }, "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "typings": "./lib/types/index.d.ts", "private": false, "scripts": { "build": "npm run clean && npm run build:esm && npm run build:cjs && webpack", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir lib/cjs", "clean": "shx rm -rf lib dist", "doc": "typedoc --out doc src", "lint": "eslint src/**.ts", "lint:fix": "eslint src/**.ts --fix", "test:unit": "jest unit --collect-coverage", "test:e2e": "jest e2e", "test": "jest --coverage", "sonar": "sonar-scanner -Dsonar.host.url=$SONAR_URL -Dsonar.login=$SONAR_TOKEN -Dsonar.projectKey=$SONAR_KEY -Dsonar.projectName='Delft-FEWS Web OC Utils'" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/jsdom": "^21.1.1", "@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/parser": "^2.18.0", "cross-fetch": "^3.1.5", "dotenv": "^16.0.0", "eslint": "^6.8.0", "fetch-mock": "^9.11.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-junit": "^15.0.0", "jest-teamcity-reporter": "^0.9.0", "jsdom": "^21.1.1", "shx": "^0.3.2", "sonarqube-scanner": "^3.0.1", "ts-jest": "^29.1.0", "ts-loader": "^9.3.1", "typedoc": "^0.23.13", "typescript": "^4.8.2", "webpack": "^5.79.0", "webpack-cli": "^5.0.1" }, "jest-junit": { "outputDirectory": "reports/", "outputName": "junit.xml" }, "engines": { "node": ">=0.14" }, "files": [ "dist/*", "lib/*" ], "repository": { "type": "git", "url": "git+https://github.com/Deltares/fews-web-oc-utils" }, "bugs": { "url": "https://github.com/Deltares/fews-web-oc-utils/issues" } }