Skip to content

Commit

Permalink
Add package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
hillerstorm committed Dec 26, 2015
1 parent 672ce27 commit 15b62a8
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Should already be required, here for clarity
require('angular');

// Load Angular and dependent libs
require('angular-animate');
require('angular-aria');

// Now load Angular Material
require('./angular-material');

// Export namespace
module.exports = 'ngMaterial';
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "angular-material",
"version": "1.0.0-master-7c9cf7d",
"main": "index",
"format": "cjs",
"registry": "github",
"peerDependencies": {
"angular": "^1.4.7",
"angular-animate": "^1.4.7",
"angular-aria": "^1.4.7"
},
"homepage": "https://material.angularjs.org",
"repository": {
"type": "git",
"url": "git://github.com/angular/material.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/angular/material/blob/master/LICENSE"
}
],
"keywords": [
"angular",
"material",
"browser",
"client-side"
],
"bugs": {
"url": "https://github.com/angular/material/issues"
}
}

0 comments on commit 15b62a8

Please sign in to comment.