Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

Commit

Permalink
Added jshint configuration and package info
Browse files Browse the repository at this point in the history
  • Loading branch information
attila committed Feb 27, 2015
1 parent 8566fa7 commit fcac8ef
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"esnext": true,
"expr" : true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"loopfunc": true,
"newcap": true,
"noarg": true,
"regexp": true,
"undef": true,
"unused": true,
"trailing": true,
"smarttabs": true,
"node": true,
"globals": {
"require": true,
"exports": true,
"console": true,
"__dirname": true
}
}
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "critical-css",
"description": "Detects Above the Fold styles on sites and assembles a stylesheet of them.",
"version": "0.0.0",
"homepage": "https://github.com/attila/critical-css",
"author": {
"name": "Attila Beregszaszi",
"email": "[email protected]",
"url": "https://frontseed.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/attila/critical-css.git"
},
"main": "./critical-css.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"phantomjs": "1.9.7"
},
"readmeFilename": "README.md"
}

0 comments on commit fcac8ef

Please sign in to comment.