Skip to content

Commit 81345df

Browse files
committed
run update
1 parent 6f0a7df commit 81345df

8 files changed

+32
-24
lines changed

Diff for: .editorconfig

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
# http://editorconfig.org/
12
root = true
23

34
[*]
4-
indent_style = space
5-
end_of_line = lf
65
charset = utf-8
6+
end_of_line = lf
77
indent_size = 2
8-
trim_trailing_whitespace = true
8+
indent_style = space
99
insert_final_newline = true
10+
trim_trailing_whitespace = true
1011

1112
[{**/{actual,fixtures,expected,templates}/**,*.md}]
1213
trim_trailing_whitespace = false
13-
insert_final_newline = false
14+
insert_final_newline = false

Diff for: .eslintrc.json

-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
{
2-
"ecmaFeatures": {
3-
"modules": true,
4-
"experimentalObjectRestSpread": true
5-
},
6-
72
"env": {
83
"browser": false,
94
"es6": true,

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ vendor
2525
temp
2626
tmp
2727
TODO.md
28+
package-lock.json

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ language: node_js
66
node_js:
77
- node
88
- iojs
9+
- '8'
910
- '7'
1011
- '6'
1112
- '5'

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2015, 2017, object Object
3+
Copyright (c) 2014-2017, Jon Schlinkert.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Diff for: README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
6464

6565
| **Commits** | **Contributor** |
6666
| --- | --- |
67-
| 9 | [jonschlinkert](https://github.com/jonschlinkert) |
67+
| 17 | [jonschlinkert](https://github.com/jonschlinkert) |
6868
| 6 | [stevenvachon](https://github.com/stevenvachon) |
69+
| 3 | [onokumus](https://github.com/onokumus) |
70+
| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |
6971

7072
### Building docs
7173

@@ -99,4 +101,4 @@ Released under the [MIT License](LICENSE).
99101

100102
***
101103

102-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on May 27, 2017._
104+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on July 11, 2017._

Diff for: bower.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"devDependencies": {
1717
"browserify": "^14.3.0",
1818
"chai": "^4.0.0",
19+
"gulp-format-md": "^0.1.12",
1920
"mocha": "^3.4.2",
2021
"mocha-phantomjs": "^4.1.0",
2122
"phantomjs": "^2.1.7",
@@ -35,11 +36,12 @@
3536
"typeof",
3637
"value"
3738
],
38-
"version": "2.0.1",
39+
"version": "2.0.3",
3940
"bugs": {
4041
"url": "https://github.com/jonschlinkert/is-plain-object/issues"
4142
},
4243
"files": [
44+
"index.d.ts",
4345
"index.js"
4446
],
4547
"ignore": [
@@ -53,7 +55,11 @@
5355
"tmp"
5456
],
5557
"contributors": [
58+
"(https://github.com/wtgtybhertgeghgtwtg)",
5659
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
60+
"Osman Nuri Okumuş (http://onokumus.com)",
5761
"Steven Vachon (https://svachon.com)"
58-
]
62+
],
63+
"types": "index.d.ts",
64+
"typings": "index.d.ts"
5965
}

Diff for: package.json

+12-10
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@
66
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
77
"contributors": [
88
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
9-
"Steven Vachon (https://svachon.com)"
9+
"Osman Nuri Okumuş (http://onokumus.com)",
10+
"Steven Vachon (https://svachon.com)",
11+
"(https://github.com/wtgtybhertgeghgtwtg)"
1012
],
1113
"repository": "jonschlinkert/is-plain-object",
1214
"bugs": {
1315
"url": "https://github.com/jonschlinkert/is-plain-object/issues"
1416
},
1517
"license": "MIT",
1618
"files": [
17-
"index.js",
18-
"index.d.ts"
19+
"index.d.ts",
20+
"index.js"
1921
],
2022
"main": "index.js",
21-
"types": "index.d.ts",
2223
"engines": {
2324
"node": ">=0.10.0"
2425
},
@@ -29,16 +30,16 @@
2930
"test": "npm run test_node && npm run browserify && npm run test_browser"
3031
},
3132
"dependencies": {
32-
"isobject": "^3.0.0"
33+
"isobject": "^3.0.1"
3334
},
3435
"devDependencies": {
35-
"browserify": "^14.3.0",
36-
"chai": "^4.0.0",
37-
"gulp-format-md": "^0.1.12",
36+
"browserify": "^14.4.0",
37+
"chai": "^4.0.2",
38+
"gulp-format-md": "^1.0.0",
3839
"mocha": "^3.4.2",
3940
"mocha-phantomjs": "^4.1.0",
4041
"phantomjs": "^2.1.7",
41-
"uglify-js": "^3.0.12"
42+
"uglify-js": "^3.0.24"
4243
},
4344
"keywords": [
4445
"check",
@@ -54,6 +55,7 @@
5455
"typeof",
5556
"value"
5657
],
58+
"types": "index.d.ts",
5759
"verb": {
5860
"toc": false,
5961
"layout": "default",
@@ -65,8 +67,8 @@
6567
],
6668
"related": {
6769
"list": [
68-
"isobject",
6970
"is-number",
71+
"isobject",
7072
"kind-of"
7173
]
7274
},

0 commit comments

Comments
 (0)