-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 KB
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
{
"name": "apprun-leaflet",
"version": "0.2.1",
"description": "simple Apprun JSX Wraper for leaflet",
"main": "dist/apprun-leaflet.js",
"module": "dist/apprun-leaflet.esm.js",
"types": "dist/types/apprun-leaflet.d.ts",
"type": "module",
"scripts": {
"clean": "rd /s /q dist",
"build": "tsc -p src && rollup -c && webpack --mode production",
"test": "jest --watch",
"start": "webpack serve --mode development",
"build:docs": "marked -i README.md -o demo/home.html & marked -i CHANGELOG.md -o demo/change.html",
"rollup": "tsc -p src && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanLPalacios/apprun-leaflet.git"
},
"keywords": [],
"author": "Juan Luis Palacios Pérez",
"license": "MIT",
"bugs": {
"url": "https://github.com/JuanLPalacios/apprun-leaflet/issues"
},
"homepage": "https://github.com/JuanLPalacios/apprun-leaflet#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@sindresorhus/slugify": "^2.1.0",
"@types/jest": "^27.0.2",
"@types/marked": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"apprun": "^3.28.15",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"marked": "^4.0.17",
"rollup": "^2.76.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"source-map-loader": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@types/leaflet": "^1.7.11",
"leaflet": "1.8.0"
}
}