-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@deltares/fews-wms-requests",
"version": "1.0.3",
"description": "Library for making requests to the FEWS WMS-T webservice",
"author": {
"name": "Werner Kramer",
"email": "[email protected]"
},
"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/*"
]
}