Skip to content

Commit 19eb074

Browse files
committed
Merge pull request #1 from hillerstorm/master
Add package.json
2 parents 672ce27 + 15b62a8 commit 19eb074

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Should already be required, here for clarity
2+
require('angular');
3+
4+
// Load Angular and dependent libs
5+
require('angular-animate');
6+
require('angular-aria');
7+
8+
// Now load Angular Material
9+
require('./angular-material');
10+
11+
// Export namespace
12+
module.exports = 'ngMaterial';

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "angular-material",
3+
"version": "1.0.0-master-7c9cf7d",
4+
"main": "index",
5+
"format": "cjs",
6+
"registry": "github",
7+
"peerDependencies": {
8+
"angular": "^1.4.7",
9+
"angular-animate": "^1.4.7",
10+
"angular-aria": "^1.4.7"
11+
},
12+
"homepage": "https://material.angularjs.org",
13+
"repository": {
14+
"type": "git",
15+
"url": "git://github.com/angular/material.git"
16+
},
17+
"licenses": [
18+
{
19+
"type": "MIT",
20+
"url": "https://github.com/angular/material/blob/master/LICENSE"
21+
}
22+
],
23+
"keywords": [
24+
"angular",
25+
"material",
26+
"browser",
27+
"client-side"
28+
],
29+
"bugs": {
30+
"url": "https://github.com/angular/material/issues"
31+
}
32+
}

0 commit comments

Comments
 (0)