-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "@compassinformatics/cpsi-mapview",
"version": "1.5.4",
"description": "An application using GeoExt and BasiGX",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "sencha app watch",
"lint": "eslint app",
"jsonlint": "jsonlint -q resources/data/layers/default.json && jsonlint -q resources/data/layers/tree.json",
"test": "npm run lint && npm run jsonlint && karma start --single-run",
"test:watch": "karma start karma-watch.conf.js",
"test:coverage": "karma start karma.conf.js --single-run --reporters coverage",
"generate:docs": "jsdoc -c .jsdoc.json -d docs",
"postinstall": "npm run build:turf",
"build:turf": "browserify turf-builder.js -s turf > lib/turf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compassinformatics/cpsi-mapview.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/compassinformatics/cpsi-mapview/issues"
},
"homepage": "https://github.com/compassinformatics/cpsi-mapview#readme",
"dependencies": {
"@geoext/geoext": "github:geoext/geoext#v7.0.0",
"@ogc-schemas/ogc-schemas": "^3.0.0",
"@terrestris/basigx": "github:compassinformatics/basigx#master",
"@turf/line-offset": "^7.1.0",
"browserify": "^17.0.1",
"font-gis": "^1.0.6",
"geostyler-openlayers-parser": "^5.0.0",
"geostyler-sld-parser": "^7.0.0",
"jsonix": "^3.0.0",
"ol": "^10.2.1",
"proj4": "^2.14.0",
"url-polyfill": "^1.1.12"
},
"devDependencies": {
"eslint": "^8.56.0",
"jsonlint": "^1.6.3",
"jsdoc": "^4.0.4",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-expect": "1.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "1.0.5",
"mocha": "^10.8.2",
"sinon": "^19.0.2"
},
"files": [
"./app/",
"./resources/",
"./sass/",
"./lib/.gitkeep",
"./turf-builder.js"
],
"overrides": {
"@terrestris/basigx": {
"@geoext/openlayers-legacy": "6.15.1"
}
}
}