Skip to content

Instantly share code, notes, and snippets.

@dustinfarris
Created September 29, 2017 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinfarris/28f138f4b64b522147d881c027a746bc to your computer and use it in GitHub Desktop.
Save dustinfarris/28f138f4b64b522147d881c027a746bc to your computer and use it in GitHub Desktop.
// elm-package.json
{
"version": "1.0.0",
"summary": "Web client for IndustryMaps",
"repository": "https://github.com/dustinfarris/industrymaps.git",
"license": "Private",
"source-directories": [
"elm"
],
"exposed-modules": [],
"dependencies": {
"NoRedInk/elm-decode-pipeline": "3.0.0 <= v < 4.0.0",
"danyx23/elm-uuid": "2.0.0 <= v < 3.0.0",
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"elm-lang/dom": "1.1.1 <= v < 2.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
"elm-lang/http": "1.0.0 <= v < 2.0.0",
"elm-lang/mouse": "1.0.1 <= v < 2.0.0",
"elm-lang/navigation": "2.1.0 <= v < 3.0.0",
"elm-lang/svg": "2.0.0 <= v < 3.0.0",
"elm-lang/window": "1.0.1 <= v < 2.0.0",
"evancz/url-parser": "2.0.1 <= v < 3.0.0",
"mdgriffith/elm-style-animation": "3.5.5 <= v < 4.0.0",
"mgold/elm-random-pcg": "4.0.0 <= v < 5.0.0",
"rtfeldman/elm-css": "11.2.0 <= v < 12.0.0",
"rtfeldman/elm-css-helpers": "2.0.1 <= v < 3.0.0",
"saschatimme/elm-phoenix": "0.2.1 <= v < 1.0.0",
"scottcorgan/elm-css-normalize": "1.1.7 <= v < 2.0.0",
"thebritican/elm-autocomplete": "4.0.3 <= v < 5.0.0",
"truqu/elm-base64": "1.0.5 <= v < 2.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}
tree elm-stuff -L 2
elm-stuff
├── build-artifacts
│   └── 0.18.0
├── exact-dependencies.json
├── generated-code
│   └── elm-community
└── packages
├── NoRedInk
├── danyx23
├── elm-lang
├── evancz
├── mdgriffith
├── mgold
├── rtfeldman
├── saschatimme
├── scottcorgan
├── thebritican
└── truqu
16 directories, 1 file
tree tests/elm-stuff -L 2
tests/elm-stuff
├── build-artifacts
│   └── 0.18.0
├── exact-dependencies.json
└── packages
├── NoRedInk
├── danyx23
├── eeue56
├── elm-community
├── elm-lang
├── evancz
├── mdgriffith
├── mgold
├── rtfeldman
├── saschatimme
├── scottcorgan
├── thebritican
└── truqu
16 directories, 1 file
// tests/elm-package.json
{
"version": "4.0.0",
"summary": "Test Suites",
"repository": "https://github.com/elm-community/elm-test.git",
"license": "BSD-3-Clause",
"source-directories": [
".",
"../elm"
],
"exposed-modules": [],
"dependencies": {
"NoRedInk/elm-decode-pipeline": "3.0.0 <= v < 4.0.0",
"danyx23/elm-uuid": "2.0.0 <= v < 3.0.0",
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"elm-lang/dom": "1.1.1 <= v < 2.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
"elm-lang/http": "1.0.0 <= v < 2.0.0",
"elm-lang/mouse": "1.0.1 <= v < 2.0.0",
"elm-lang/navigation": "2.1.0 <= v < 3.0.0",
"elm-lang/svg": "2.0.0 <= v < 3.0.0",
"elm-lang/window": "1.0.1 <= v < 2.0.0",
"evancz/url-parser": "2.0.1 <= v < 3.0.0",
"mdgriffith/elm-style-animation": "3.5.5 <= v < 4.0.0",
"mgold/elm-random-pcg": "4.0.0 <= v < 5.0.0",
"rtfeldman/elm-css": "11.2.0 <= v < 12.0.0",
"rtfeldman/elm-css-helpers": "2.0.1 <= v < 3.0.0",
"saschatimme/elm-phoenix": "0.2.1 <= v < 1.0.0",
"scottcorgan/elm-css-normalize": "1.1.7 <= v < 2.0.0",
"thebritican/elm-autocomplete": "4.0.3 <= v < 5.0.0",
"truqu/elm-base64": "1.0.5 <= v < 2.0.0",
"elm-community/elm-test": "4.0.0 <= v < 5.0.0",
"elm-community/shrink": "2.0.0 <= v < 3.0.0",
"elm-community/lazy-list": "1.0.0 <= v < 2.0.0"
},
"elm-version": "0.18.0 <= v < 0.19.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment