-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "leaflet-streamlines",
"version": "1.0.1",
"description": "Visualise two dimensional vector fields in leaflet using stream lines.",
"main": "src/leaflet-streamlines.js",
"unpkg": "dist/leaflet-streamlines.min.js",
"scripts": {
"build": "rollup -c \"rollup_config.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesRunnalls/leaflet-streamlines.git"
},
"files": [
"dist/**/*",
"src/**/*"
],
"keywords": [
"streamlines",
"leaflet",
"geospatial",
"flows",
"vector"
],
"author": {
"name": "James Runnalls",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/jamesrunnalls/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JamesRunnalls/leaflet-streamlines/issues"
},
"homepage": "https://github.com/JamesRunnalls/leaflet-streamlines#readme",
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"rollup": "^2.39.1",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2"
},
"dependencies": {
"d3": "^6.7.0",
"leaflet": "^1.7.1"
}
}