Skip to content
Permalink
Browse files
Add package.json
  • Loading branch information
necolas committed Feb 17, 2014
1 parent 6ec1a10 commit 058ee3b0adf88c4cdd3c9c6b4604d643f39f6075
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 18 deletions.
@@ -1,5 +1,7 @@
=== HEAD

* Add package.json for npm support.

=== 3.0.0 (January 28, 2014)

=== 3.0.0-rc.1 (January 26, 2014)
@@ -13,9 +13,11 @@ normalizing.

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

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

Install with [Component(1)](http://component.io/): `component install necolas/normalize.css`
Install with [npm](http://npmjs.org/): `npm install --save normalize.css`

Install with [Bower](http://bower.io/): `bower install --save normalize.css`

## What does it do?

@@ -1,12 +1,13 @@
{
"name": "normalize-css",
"version": "3.0.0",
"main": "normalize.css",
"author": "Nicolas Gallagher",
"ignore": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"component.json",
"test.html"
]
"name": "normalize-css",
"version": "3.0.0",
"main": "normalize.css",
"author": "Nicolas Gallagher",
"ignore": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"component.json",
"package.json",
"test.html"
]
}
@@ -1,8 +1,8 @@
{
"name": "normalize-css",
"repo": "necolas/normalize.css",
"version": "3.0.0",
"styles": ["normalize.css"],
"author": "Nicolas Gallagher",
"license": "MIT"
"name": "normalize.css",
"repo": "necolas/normalize.css",
"version": "3.0.0",
"styles": ["normalize.css"],
"author": "Nicolas Gallagher",
"license": "MIT"
}
@@ -0,0 +1,17 @@
{
"name": "normalize.css",
"version": "3.0.0",
"description": "Normalize.css as a node packaged module",
"style": "normalize.css",
"files": [
"normalize.css",
"component.json"
],
"homepage": "http://necolas.github.io/normalize.css",
"repository": {
"type": "git",
"url": "git://github.com/necolas/normalize.css.git"
},
"author": "Nicolas Gallagher",
"license": "MIT"
}

0 comments on commit 058ee3b

Please sign in to comment.