-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.49 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
{
"name": "geostyler-cql-parser",
"version": "4.0.0",
"description": "Translates CQL Filters and Geostyler Style Filters",
"type": "module",
"main": "dist/CqlParser.js",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-cql-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"cql"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler/issues"
},
"homepage": "https://github.com/geostyler/geostyler-cql-parser#readme",
"scripts": {
"generate": "jison -m js ./src/cql.jison -o ./src/cql-parser.cjs && sed -i 's;var cqlParser;(typeof window !== undefined ? window : global).cqlParser;g' ./src/cql-parser.cjs",
"build": "tsc && cp ./src/cql-parser.cjs ./dist",
"lint": "eslint -c .eslintrc.cjs --ext ts,spec.ts src/",
"typecheck": "tsc --noEmit --project tsconfig.json",
"prebuild": "npm run test",
"prepublishOnly": "npm run build",
"pretest": "npm run lint && npm run typecheck",
"start": "vite",
"test:watch": "vitest",
"test": "vitest run --coverage"
},
"dependencies": {
"geostyler-style": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"acorn": "^8.12.0",
"babel-jest": "^29.7.0",
"buffer": "^6.0.3",
"buffer-browserify": "^0.2.5",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.2",
"graceful-js": "^1.0.0",
"jison": "^0.4.18",
"jsdom": "^24.1.0",
"path": "^0.12.7",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20.6.0",
"npm": ">=10.0.0"
},
"funding": "https://opencollective.com/geostyler"
}