-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.45 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
{
"name": "ol-wfst",
"version": "4.4.0",
"description": "Tiny WFS-T client to insert (drawing or uploading), modify and delete features on GeoServers using OpenLayers.",
"main": "dist/ol-wfst.js",
"module": "lib/ol-wfst.js",
"types": "lib/ol-wfst.d.ts",
"style": [
"lib/style/css/ol-gisify.css",
"lib/style/css/ol-wfst.bootstrap5.css"
],
"files": [
"lib/**/*",
"dist/**/*"
],
"type": "module",
"scripts": {
"watch": "rollup -w --config rollup.config.dist.js --dev",
"doc": "documentation readme src/ol-wfst.ts src/Geoserver.ts src/WfsLayer.ts src/WmsLayer.ts src/@types.ts --sort-order=kind --shallow --quiet=true --access=public --access=undefined --section=API --parse-extension ts && node scripts/external-links.js README.md && prettier --write README.md",
"format": "eslint --fix src/*.ts && prettier --write src",
"lint": "eslint src/*.ts && prettier --check src",
"build": "npm run lint && rollup --config rollup.config.dist.js && rollup --config rollup.config.js"
},
"author": "Gastón Zalba",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GastonZalba/ol-wfst.git"
},
"bugs": {
"url": "https://github.com/GastonZalba/ol-wfst/issues"
},
"homepage": "https://github.com/GastonZalba/ol-wfst#readme",
"dependencies": {
"ol-wfs-capabilities": "^1.0.3",
"ts-mixer": "^6.0.3"
},
"peerDependencies": {
"bootstrap": ">=5.3.0",
"modal-vanilla": ">=0.8.0",
"ol": ">=5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"bootstrap": "^5.3.0",
"documentation": "^14.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"modal-vanilla": "^0.12.0",
"ol": "^9.1.0",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.3",
"rollup": "^3.20.2",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"sass": "^1.49.7",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}