-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "kepler.opengeo.tech",
"version": "1.2.0",
"description": "The open source full-stack geosocial network platform",
"repository": {
"type": "git",
"url": "git+https://github.com/Keplerjs/keplerjs.github.io.git"
},
"author": {
"name": "Stefano Cudini",
"email": "stefano.cudini@gmail.com",
"url": "https://opengeo.tech/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Keplerjs/keplerjs.github.io/issues"
},
"homepage": "https://kepler.opengeo.tech",
"main": "bundle.js",
"scripts": {
"build": "browserify src/main.js -o bundle.js",
"start": "watchify -p browserify-livereload src/main.js -o bundle.js"
},
"dependencies": {
"@asymmetrik/leaflet-d3": "^4.1.0",
"chartist": "0.11.0",
"d3": "^5.4.0",
"d3-hexbin": "^0.2.2",
"jquery": "3.5.0",
"leaflet": "1.3.1",
"slick-carousel": "^1.8.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"browserify": "^16.2.2",
"browserify-css": "^0.14.0",
"browserify-livereload": "^1.0.10",
"watchify": "^3.11.0"
},
"browserify-css": {
"autoInject": true,
"autoInjectOptions": {
"insertAt": "top"
},
"minify": true,
"rootDir": "."
},
"browserify": {
"transform": [
"browserify-css"
]
}
}