-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.25 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-rain",
"version": "0.2.0",
"description": "WebGL rain animation for Leaflet maps",
"repository": "https://github.com/ggolikov/Leaflet.Rain",
"main": "./src/L.Rain.js",
"author": "Grigory Golikov gr.golikov@gmail.com",
"license": "MIT",
"scripts": {
"watch": "watchify -v -d demo/js/app.js -o demo/js/bundle.js",
"lint": "eslint ./src/L.Rain.js",
"build-js": "cat ./src/L.Rain.js > ./dist/Leaflet.Rain-src.js",
"compress": "uglifyjs ./dist/Leaflet.Rain-src.js -o ./dist/Leaflet.Rain.js -m --comments",
"server": "live-server --port=9000 --host=localhost --watch=demo",
"start": "npm-run-all --parallel watch server",
"deploy": "gh-pages -d demo"
},
"browserify": {
"transform": [
"glslify",
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"dependencies": {
"leaflet": "^1.4.0",
"glslify": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babelify": "^10.0.0",
"browserify": "^13.1.1",
"eslint": "^4.19.1",
"gh-pages": "^1.0.0",
"live-server": "^1.2.0",
"npm-run-all": "^4.0.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
}
}