Skip to content

Commit 058ee3b

Browse files
committed
Add package.json
1 parent 6ec1a10 commit 058ee3b

File tree

5 files changed

+40
-18
lines changed

5 files changed

+40
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
=== HEAD
22

3+
* Add package.json for npm support.
4+
35
=== 3.0.0 (January 28, 2014)
46

57
=== 3.0.0-rc.1 (January 26, 2014)

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ normalizing.
1313

1414
Download from the [project page](http://necolas.github.io/normalize.css/).
1515

16-
Install with [Bower](http://bower.io/): `bower install --save normalize-css`
16+
Install with [Component(1)](https://github.com/component/component/): `component install necolas/normalize.css`
1717

18-
Install with [Component(1)](http://component.io/): `component install necolas/normalize.css`
18+
Install with [npm](http://npmjs.org/): `npm install --save normalize.css`
19+
20+
Install with [Bower](http://bower.io/): `bower install --save normalize.css`
1921

2022
## What does it do?
2123

bower.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"name": "normalize-css",
3-
"version": "3.0.0",
4-
"main": "normalize.css",
5-
"author": "Nicolas Gallagher",
6-
"ignore": [
7-
"CHANGELOG.md",
8-
"CONTRIBUTING.md",
9-
"component.json",
10-
"test.html"
11-
]
2+
"name": "normalize-css",
3+
"version": "3.0.0",
4+
"main": "normalize.css",
5+
"author": "Nicolas Gallagher",
6+
"ignore": [
7+
"CHANGELOG.md",
8+
"CONTRIBUTING.md",
9+
"component.json",
10+
"package.json",
11+
"test.html"
12+
]
1213
}

component.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "normalize-css",
3-
"repo": "necolas/normalize.css",
4-
"version": "3.0.0",
5-
"styles": ["normalize.css"],
6-
"author": "Nicolas Gallagher",
7-
"license": "MIT"
2+
"name": "normalize.css",
3+
"repo": "necolas/normalize.css",
4+
"version": "3.0.0",
5+
"styles": ["normalize.css"],
6+
"author": "Nicolas Gallagher",
7+
"license": "MIT"
88
}

package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "normalize.css",
3+
"version": "3.0.0",
4+
"description": "Normalize.css as a node packaged module",
5+
"style": "normalize.css",
6+
"files": [
7+
"normalize.css",
8+
"component.json"
9+
],
10+
"homepage": "http://necolas.github.io/normalize.css",
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/necolas/normalize.css.git"
14+
},
15+
"author": "Nicolas Gallagher",
16+
"license": "MIT"
17+
}

0 commit comments

Comments
 (0)