Skip to content
This repository was archived by the owner on Sep 17, 2018. It is now read-only.

Commit 702179e

Browse files
committed
Update dependencies.
1 parent ba28fe8 commit 702179e

3 files changed

Lines changed: 18 additions & 21 deletions

File tree

.eslintrc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"root": true,
23
"env": {
34
"node": true
45
},
@@ -14,6 +15,7 @@
1415
"eqeqeq": 2,
1516
"indent": [2, 2],
1617
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
18+
"keyword-spacing": 2,
1719
"new-cap": 2,
1820
"new-parens": 2,
1921
"no-array-constructor": 2,
@@ -28,8 +30,8 @@
2830
"no-inline-comments": 0,
2931
"no-irregular-whitespace": 2,
3032
"no-mixed-spaces-and-tabs": 2,
31-
"no-multi-spaces": 2,
3233
"no-multiple-empty-lines": 0,
34+
"no-multi-spaces": 2,
3335
"no-new-object": 2,
3436
"no-param-reassign": 0,
3537
"no-process-env": 2,
@@ -40,21 +42,18 @@
4042
"no-trailing-spaces": 2,
4143
"no-underscore-dangle": 0,
4244
"no-void": 2,
45+
"object-curly-spacing": [2, "never"],
4346
"one-var": [2, "never"],
4447
"operator-assignment": [2, "always"],
4548
"padded-blocks": 0,
4649
"quotes": 0,
4750
"radix": 2,
4851
"semi": [2, "always"],
4952
"semi-spacing": [2, {"before": false, "after": true}],
50-
"space-after-keywords": [2, "always", {"checkFunctionKeyword": true}],
5153
"space-before-blocks": [2, "always"],
52-
"space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}],
53-
"space-in-brackets": [2, "never"],
54+
"spaced-comment": [2, "always"],
5455
"space-in-parens": [2, "never"],
55-
"space-return-throw-case": 2,
5656
"space-unary-ops": [2, {"words": true, "nonwords": false}],
57-
"spaced-line-comment": [2, "always"],
5857
"strict": [2, "global"],
5958
"vars-on-top": 0,
6059
"wrap-iife": [2, "inside"],

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
1313
## Getting Started
1414

15-
This plugin requires Grunt `~0.4.3`.
16-
1715
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
1816

1917
```shell
@@ -53,14 +51,14 @@ All options are passed directly to css-flip's `flip()` function.
5351
None of the options are required.
5452

5553
#### options.compress
56-
Type: `Boolean`
57-
Default value: `false`
54+
* Type: `Boolean`
55+
* Default: `false`
5856

5957
Whether to slightly compress output. Some newlines and indentation are removed. Comments stay intact.
6058

6159
#### options.indent
62-
Type: `String`
63-
Default value: `' '` (two spaces)
60+
* Type: `String`
61+
* Default: `' '` (two spaces)
6462

6563
String value to use for 1 level of indentation in the output.
6664

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "Chris Rebert <[email protected]> (http://chrisrebert.com)",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/twbs/grunt-css-flip.git"
9+
"url": "git+https://github.com/twbs/grunt-css-flip.git"
1010
},
1111
"bugs": {
1212
"url": "https://github.com/twbs/grunt-css-flip/issues"
@@ -20,19 +20,19 @@
2020
"test": "grunt test"
2121
},
2222
"dependencies": {
23-
"css-flip": "~0.5.0"
23+
"css-flip": "^0.5.0"
2424
},
2525
"devDependencies": {
26-
"grunt": "~0.4.5",
27-
"grunt-contrib-clean": "^0.6.0",
28-
"grunt-contrib-jshint": "^0.11.0",
29-
"grunt-contrib-nodeunit": "^0.4.1",
30-
"grunt-eslint": "^10.0.0",
31-
"grunt-jscs": "^1.5.0",
26+
"grunt": "^0.4.5",
27+
"grunt-contrib-clean": "^1.0.0",
28+
"grunt-contrib-jshint": "^1.0.0",
29+
"grunt-contrib-nodeunit": "^1.0.0",
30+
"grunt-eslint": "^18.0.0",
31+
"grunt-jscs": "^2.7.0",
3232
"load-grunt-tasks": "^3.1.0"
3333
},
3434
"peerDependencies": {
35-
"grunt": "~0.4.3"
35+
"grunt": ">=0.4.5"
3636
},
3737
"engines": {
3838
"node": ">= 0.10.0"

0 commit comments

Comments
 (0)