-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
{
"name": "geostyler-masterportal-parser",
"version": "0.0.1",
"description": "GeoStyler-Style-Parser implementation for Masterportal Styles",
"main": "build/dist/MasterportalStyleParser.js",
"types": "build/dist/MasterportalStyleParser.d.ts",
"files": [
"build",
"index.d.ts",
"browser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-masterportal-parser.git"
},
"keywords": [
"geostyler",
"masterportal"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-masterportal-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-masterportal-parser#readme",
"funding": "https://opencollective.com/geostyler",
"scripts": {
"build-browser": "webpack --config browser-build.config.js",
"build-dist": "tsc -p tsconfig.json",
"build": "npm run build-dist && npm run build-browser",
"lint:test:build": "npm run lint && npm run test && npm run build",
"lint:test": "npm run lint && npm run test",
"lint": "eslint -c .eslintrc.js --ext .ts . && tsc --noEmit --project tsconfig.json",
"prepublishOnly": "npm run build",
"test-watch": "jest --watchAll",
"test": "jest --coverage"
},
"dependencies": {
"geostyler-style": "^8.1.0"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "^4.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/eslint-plugin-tslint": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"semantic-release": "^22.0.12",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}