forked from geostyler/geostyler-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.63 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
79
80
81
82
83
84
85
86
87
{
"name": "geostyler-cli",
"version": "4.2.0",
"description": "",
"main": "dist/geostyler.js",
"files": [
"dist"
],
"bin": {
"geostyler-cli": "dist/geostyler.js"
},
"scripts": {
"build": "npm run build-clean && npm run build-only",
"build-clean": "rimraf build/ dist/",
"build-only": "tsc -p tsconfig.json && rollup -c rollup.config.mjs",
"lint:build": "npm run lint && npm run build",
"start": "node dist/geostyler.js",
"lint": "eslint . && tsc --noEmit --project tsconfig.json",
"test": "node test.js",
"build-binaries": "npm run build && pkg dist/geostyler.js --targets node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-macos-arm64,node18-win-x64 --out-path binaries",
"package-binaries": "npm run build-binaries && node package-binaries.js",
"prepublishOnly": "npm run build",
"postpublish": "npm run package-binaries"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "./binaries"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-cli.git"
},
"keywords": [
"geo",
"styler",
"geostyler",
"cli"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-cli/issues"
},
"homepage": "https://github.com/geostyler/geostyler-cli#readme",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "^3.1.0",
"@types/gradient-string": "^1.1.2",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"adm-zip": "^0.5.10",
"eslint": "^8.39.0",
"geostyler-lyrx-parser": "^1.0.2",
"geostyler-mapbox-parser": "^6.0.0",
"geostyler-mapfile-parser": "^4.0.1",
"geostyler-qgis-parser": "^3.0.0",
"geostyler-sld-parser": "^6.1.2",
"@koordinates/geostyler-mapnik-parser": "^0.1.1",
"geostyler-style": "^9.1.0",
"gradient-string": "^2.0.2",
"minimist": "^1.2.8",
"ol": "^9.0.0",
"ora": "5.4.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.0",
"rollup": "^4.21.3",
"terminal-image": "^2.0.0",
"typescript": "^5.0.4"
},
"funding": "https://opencollective.com/geostyler"
}