forked from WooCode/bower-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
672ce27
commit 15b62a8
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
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'; |
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
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" | ||
} | ||
} |