Last active
August 29, 2015 14:14
-
-
Save jstrimpel/71f807ad37fe7fa9b999 to your computer and use it in GitHub Desktop.
lazo package.json meta data schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// repo is a model | |
{ | |
"lazo": { | |
"model": true | |
} | |
} | |
// repo is component with a dist | |
{ | |
"lazo": { | |
"component": "./dist" | |
} | |
} | |
// repo contains multiple items | |
{ | |
"lazo": { | |
"models": "./models", | |
"components": "./components", | |
"application": "./app", | |
} | |
} | |
// repo is a html import | |
{ | |
"lazo": { | |
"html-import": true | |
} | |
} | |
// entire app | |
{ | |
"lazo": "./dist" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment