@deltares/fews-wms-requests
Version:
Library for making requests to the FEWS WMS-T webservice
79 lines (78 loc) • 2.39 kB
JSON
{
"name": "@deltares/fews-wms-requests",
"version": "2.0.0",
"description": "Library for making requests to the FEWS WMS-T webservice",
"author": {
"name": "Werner Kramer",
"email": "werner.kramer@deltares.nl"
},
"license": "MIT",
"keywords": [
"FEWS",
"Delft-FEWS",
"Web Map Services",
"WMS-T",
"WMS",
"OGC:WMS"
],
"main": "./dist/fews-wms-requests.umd.js",
"typings": "./dist/types/index.d.ts",
"private": false,
"scripts": {
"build": "npm run clean && tsc && webpack",
"clean": "shx rm -rf 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",
"json2ts": "curl https://fewsdocs.deltares.nl/webservices/wms/schemas/wms/pi_wms_get_capabilities.json | json2ts > src/response/getCapabilitiesResponse.ts & curl https://fewsdocs.deltares.nl/webservices/wms/schemas/wms/pi_wms_legend.json | json2ts > src/response/getLegendGraphicResponse.ts",
"sonar": "sonar-scanner -Dsonar.host.url=$SONAR_URL -Dsonar.login=$SONAR_TOKEN -Dsonar.projectKey=$SONAR_KEY -Dsonar.projectName='Delft-FEWS Web OC WMS Requests'"
},
"dependencies": {
"@deltares/fews-web-oc-utils": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.0",
"@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",
"json-schema-to-typescript": "^11.0.2",
"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": "^4.9.1"
},
"jest-junit": {
"outputDirectory": "reports/",
"outputName": "junit.xml"
},
"engines": {
"node": ">=0.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Deltares/fews-wms-requests"
},
"bugs": {
"url": "https://github.com/Deltares/fews-wms-requests/issues"
},
"files": [
"dist/*",
"src/*"
]
}