-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "esri-canvas-tile",
"version": "0.1.0",
"description": "Custom layer that tiles canvas elements across the map and enables auto-scaling when tiles are not available. You can use custom data formatting functions to manipulate the data on a per pixel basis.",
"main": "index.html",
"scripts": {
"start": "npm run babel -- -w",
"build": "npm run babel",
"babel": "babel src --out-dir build",
"test": "eslint src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueraster/esri-canvas-tile.git"
},
"keywords": [
"esri",
"canvas",
"tiles",
"auto-scale",
"imagery",
"javascript"
],
"author": "Robert-W <https://github.com/Robert-W>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueraster/esri-canvas-tile/issues"
},
"homepage": "https://github.com/blueraster/esri-canvas-tile#readme",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-es2015-modules-amd": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.2.2"
}
}