-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 833 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 833 Bytes
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
{
"name": "elt-leaflet",
"version": "0.8.0",
"repository": "https://github.com/elementjs/elt-leaflet",
"description": "some description",
"license": "MIT",
"typings": "./index.d.ts",
"scripts": {
"build:dts": "dts-bundle --name elt-leaflet --main build/index.d.ts --out ../index.d.ts",
"build:js": "wtsc",
"build": "npm run build:js && npm run build:dts",
"watch": "concurrently -c blue,red -n dts,tsc 'chokidar --silent \"build/*.d.ts\" -c \"npm run build:dts\"' 'wtsc -w'",
"prepublish": "npm run build"
},
"dependencies": {
"@types/leaflet": "^1.5.2",
"leaflet": "^1.5.1"
},
"devDependencies": {
"@types/node": "^8.0.53",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.5.1",
"dts-bundle": "^0.7.3",
"source-map-loader": "^0.1.5",
"webpack": "^1.13.3"
}
}