-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.67 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
{
"name": "mapgl-snow",
"version": "1.1.2",
"description": "Plugin to add falling snow to your MapGL map",
"main": "dist/snow.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Trufi/mapgl-snow.git"
},
"author": {
"name": "Mstislav Zhivodkov",
"email": "[email protected]",
"url": "https://trufi.github.io/"
},
"license": "MIT",
"files": [
"dist/*"
],
"scripts": {
"start": "npm run dev",
"build": "npm run build:bundle && npm run build:types",
"build:bundle": "webpack --env production",
"build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --outDir dist",
"build-demo": "webpack --env production --env demo",
"dev": "webpack serve --env demo",
"lint": "tslint 'src/**/*.ts'",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,html,css}\"",
"test": "npm run lint && npm run prettier && npm run build",
"pages": "gh-pages -d . --src {index.html,dist/demo.js}"
},
"dependencies": {
"@2gis/mapgl": "^1.11.3",
"tslib": "^2.2.0"
},
"devDependencies": {
"2gl": "^0.8.1",
"@2gis/gl-matrix": "^2.4.6",
"@types/dat.gui": "^0.7.6",
"dat.gui": "^0.7.7",
"fork-ts-checker-webpack-plugin": "^6.2.0",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"ts-loader": "^8.1.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.2.4",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}