merge-options 0.0.42 → 0.0.64

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of merge-options might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/license +21 -0
  2. package/package.json +9 -10
  3. package/readme.md +2 -1
package/license ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Michael Mayer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merge-options",
3
- "version": "0.0.42",
3
+ "version": "0.0.64",
4
4
  "description": "Merge Option Objects",
5
5
  "license": "MIT",
6
6
  "repository": "schnittstabil/merge-options",
@@ -13,10 +13,9 @@
13
13
  "node": ">=0.10.0"
14
14
  },
15
15
  "scripts": {
16
- "test": "xo && nyc ava && nyc report --reporter=text",
16
+ "test": "xo && nyc ava",
17
17
  "clean": "rimraf .nyc_output/ coverage/",
18
- "coverage-html": "nyc ava && nyc report --reporter=html",
19
- "coveralls": "nyc report --reporter=text-lcov | coveralls"
18
+ "coverage-html": "nyc ava && nyc report --reporter=html"
20
19
  },
21
20
  "files": [
22
21
  "index.js"
@@ -31,13 +30,13 @@
31
30
  "clone"
32
31
  ],
33
32
  "devDependencies": {
34
- "ava": "*",
35
- "coveralls": "^2.11.4",
36
- "nyc": "^3.2.2",
37
- "rimraf": "^2.4.3",
38
- "xo": "*"
33
+ "ava": "^0.12.0",
34
+ "coveralls": "^2.11.6",
35
+ "nyc": "^6.0.0",
36
+ "rimraf": "^2.5.2",
37
+ "xo": "^0.12.1"
39
38
  },
40
39
  "dependencies": {
41
- "is-plain-obj": "^1.0.0"
40
+ "is-plain-obj": "^1.1.0"
42
41
  }
43
42
  }
package/readme.md CHANGED
@@ -1,4 +1,5 @@
1
- # merge-options [![Build Status](https://travis-ci.org/schnittstabil/merge-options.svg?branch=master)](https://travis-ci.org/schnittstabil/merge-options) [![Coverage Status](https://coveralls.io/repos/schnittstabil/merge-options/badge.svg?branch=master&service=github)](https://coveralls.io/github/schnittstabil/merge-options?branch=master)
1
+ # merge-options [![Build Status](https://travis-ci.org/schnittstabil/merge-options.svg?branch=master)](https://travis-ci.org/schnittstabil/merge-options) [![Coverage Status](https://coveralls.io/repos/schnittstabil/merge-options/badge.svg?branch=master&service=github)](https://coveralls.io/github/schnittstabil/merge-options?branch=master) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
2
+
2
3
 
3
4
  > Merge Option Objects
4
5