Add package.json

This commit is contained in:
Nicolas Gallagher 2014-02-16 20:08:25 -08:00
parent 6ec1a10b5d
commit 058ee3b0ad
5 changed files with 40 additions and 18 deletions

View File

@ -1,5 +1,7 @@
=== HEAD === HEAD
* Add package.json for npm support.
=== 3.0.0 (January 28, 2014) === 3.0.0 (January 28, 2014)
=== 3.0.0-rc.1 (January 26, 2014) === 3.0.0-rc.1 (January 26, 2014)

View File

@ -13,9 +13,11 @@ normalizing.
Download from the [project page](http://necolas.github.io/normalize.css/). 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? ## What does it do?

View File

@ -1,12 +1,13 @@
{ {
"name": "normalize-css", "name": "normalize-css",
"version": "3.0.0", "version": "3.0.0",
"main": "normalize.css", "main": "normalize.css",
"author": "Nicolas Gallagher", "author": "Nicolas Gallagher",
"ignore": [ "ignore": [
"CHANGELOG.md", "CHANGELOG.md",
"CONTRIBUTING.md", "CONTRIBUTING.md",
"component.json", "component.json",
"test.html" "package.json",
] "test.html"
]
} }

View File

@ -1,8 +1,8 @@
{ {
"name": "normalize-css", "name": "normalize.css",
"repo": "necolas/normalize.css", "repo": "necolas/normalize.css",
"version": "3.0.0", "version": "3.0.0",
"styles": ["normalize.css"], "styles": ["normalize.css"],
"author": "Nicolas Gallagher", "author": "Nicolas Gallagher",
"license": "MIT" "license": "MIT"
} }

17
package.json Normal file
View File

@ -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"
}