-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
82 lines (82 loc) · 2.57 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
{
"name": "leaflet.smooth_marker_bouncing",
"version": "3.1.0",
"type": "module",
"description": "Smooth animation of marker bouncing for Leaflet.",
"author": "Alexei KLENIN <[email protected]> (https://github.com/hosuaby)",
"main": "dist/index.esm.js",
"license": "BSD-2-Clause",
"keywords": [
"Leaflet",
"marker",
"bouncing",
"animation",
"smooth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing.git"
},
"bugs": {
"url": "https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing/issues"
},
"homepage": "https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing#readme",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.24.8",
"@babel/register": "7.24.6",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@types/leaflet": "^1.9.12",
"ava": "6.1.3",
"browser-env": "^3.3.0",
"concurrently": "8.2.2",
"coveralls": "3.1.1",
"font-awesome": "^4.7.0",
"http-server": "14.1.1",
"jquery": "3.7.1",
"leaflet": "1.9.4",
"leaflet.awesome-markers": "^2.0.5",
"leaflet.markercluster": "1.5.3",
"lodash": "4.17.21",
"npm-check": "6.0.1",
"nyc": "17.0.0",
"onchange": "7.1.0",
"rollup": "4.19.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"sidebar-v2": "^0.4.0"
},
"scripts": {
"compile": "babel src --out-dir dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run patch && npm run rollup && npm run hash",
"deps:check": "npm-check || true",
"deps:upgrade": "npm-check -u -E",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"hash": "cat src/bouncing.css | openssl dgst -sha256 -binary | openssl base64 > dist/bouncing.css.sha256",
"patch": "cp src/style-inject.js node_modules/style-inject/dist/style-inject.es",
"release": "npm run test && npm run compile && npm run build",
"rollup": "rollup -c",
"serve": "http-server -c-1 --cors -o /debug",
"test": "ava",
"test:ci": "nyc --reporter=html --reporter=text ava",
"watch": "onchange 'src/*' -- npm run build"
},
"ava": {
"files": [
"tests/**/*",
"!tests/helpers/*"
],
"require": [
"./tests/helpers/setup-browser-env.js"
],
"nodeArguments": [
"--es-module-specifier-resolution=node",
"--experimental-loader=./tests/helpers/cssLoader.js",
"--no-warnings"
],
"verbose": true
}
}