Skip to content
Permalink
Browse files
Update project configuration
  • Loading branch information
Jonathan Neal committed Mar 19, 2016
1 parent aef06ef commit 3123b8e9f5923fd06e4eeb9e0727b7cc42fd94f6
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 44 deletions.
@@ -0,0 +1,12 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

This file was deleted.

@@ -0,0 +1,17 @@
{
"name": "normalize-css",
"description": "A modern alternative to CSS resets",
"main": "normalize.css",
"authors": [
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
],
"license": "MIT",
"ignore": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"package.json",
"README.md",
"test.html"
]
}
@@ -1,24 +1,28 @@
{
"name": "normalize.css",
"version": "3.0.3",
"description": "Normalize.css as a node packaged module",
"description": "A modern alternative to CSS resets",
"style": "normalize.css",
"files": [
"LICENSE.md",
"normalize.css"
],
"homepage": "http://necolas.github.io/normalize.css",
"repository": {
"type": "git",
"url": "git://github.com/necolas/normalize.css.git"
},
"main": "normalize.css",
"author": "Nicolas Gallagher",
"license": "MIT",
"devDependencies": {
"stylelint": "^4.2.0"
"stylelint": "^5.1.0",
"stylelint-config-standard": "^4.0.1"
},
"scripts": {
"test": "stylelint normalize.css"
},
"repository": "necolas/normalize.css",
"contributors": [
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
],
"license": "MIT",
"bugs": "https://github.com/necolas/normalize.css/issues",
"homepage": "https://necolas.github.io/normalize.css#readme",
"stylelint": {
"extends": "stylelint-config-standard"
}
}

0 comments on commit 3123b8e

Please sign in to comment.