aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 0a6a11621b37328af08d4cafb882e1457addfea9 (plain)
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
{
  "name": "elm-mapbox",
  "version": "4.1.0",
  "description": "A custom element designed for use with elm-mapbox",
  "main": "dist/elm-mapbox.cjs.js",
  "module": "dist/elm-mapbox.esm.js",
  "browser": "dist/elm-mapbox.umd.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "test": "elm make --output=/dev/null src/**/*.elm && cd examples && elm make --output=/dev/null ./*.elm",
    "pretest": "npm run build",
    "generate": "curl https://raw.githubusercontent.com/mapbox/mapbox-gl-js/v0.54.0/src/style-spec/reference/v8.json | node generate-elm.js | elm-format --stdin --output src/Mapbox/Layer.elm"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gampleman/elm-mapbox.git"
  },
  "keywords": [
    "elm",
    "mapbox",
    "custom-element"
  ],
  "author": "Jakub Hampl <honitom@seznam.cz>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gampleman/elm-mapbox/issues"
  },
  "homepage": "https://github.com/gampleman/elm-mapbox#readme",
  "devDependencies": {
    "elm": "^0.19.0-bugfix6",
    "elm-format": "^0.8.1",
    "elm-test": "^0.19.0",
    "prettier": "^1.13.5",
    "rollup": "^1.8.0",
    "rollup-plugin-buble": "^0.19.2",
    "rollup-plugin-commonjs": "^9.1.3",
    "rollup-plugin-node-resolve": "^4.1.0"
  },
  "dependencies": {
    "mapbox-gl": "^0.54.0"
  },
  "prettier": {
    "tabWidth": 2
  }
}