-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1017 Bytes
/
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
{
"name": "@2gis/markerdrawer",
"version": "1.1.0",
"description": "Library for fast drawing a huge amount of markers",
"author": {
"name": "Mstislav Zhivodkov",
"email": "[email protected]",
"url": "https://trufi.github.io/"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "[email protected]:2gis/markerdrawer.git"
},
"main": "dist/markerdrawer.js",
"typings": "dist/src/index",
"scripts": {
"start": "npm run dev",
"test": "npm run lint",
"dev": "webpack-dev-server",
"build": "NODE_ENV=production webpack",
"builddemo": "NODE_ENV=demo webpack",
"lint": "tslint 'src/**/*.ts' 'demo/**/*.ts'"
},
"devDependencies": {
"2gis-maps": "^3.3.5",
"@types/rbush": "^2.0.2",
"bin-pack": "^1.0.2",
"rbush": "^2.0.1",
"ts-loader": "^2.3.1",
"tslib": "^1.7.1",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.4.2",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
}
}