Skip to content

Instantly share code, notes, and snippets.

@EvanOxfeld
Created August 8, 2014 16:14
Show Gist options
  • Save EvanOxfeld/c52ddf530167b08f18c0 to your computer and use it in GitHub Desktop.
Save EvanOxfeld/c52ddf530167b08f18c0 to your computer and use it in GitHub Desktop.
Browserify package.json with Angular & napa experiment
{
"name": "todo-angular-browserify",
"version": "0.0.0",
"description": "",
"main": "bundle.js",
"dependencies": {},
"devDependencies": {
"browserify": "^4.2.3",
"browserify-shim": "^3.6.0",
"napa": "^0.4.1"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"angular": "global:angular"
},
"napa": {
"angular-ui-router": "angular-ui/ui-router#0.2.10"
},
"scripts": {
"install": "napa",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "private"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment