Skip to content

Commit

Permalink
Merge pull request #94 from keithamus/chore/update-all-dependencies
Browse files Browse the repository at this point in the history
chore: update package dependencies
  • Loading branch information
keithamus committed Apr 18, 2017
2 parents 9af1fee + 0a18483 commit 0bb99f7
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
1 change: 1 addition & 0 deletions bench/index.js
@@ -1,4 +1,5 @@
'use strict';

var typeDetect = require('../');
var Benchmark = require('benchmark');
var benches = [];
Expand Down
1 change: 1 addition & 0 deletions index.js
@@ -1,4 +1,5 @@
'use strict';

/* !
* type-detect
* Copyright(c) 2013 jake luer <jake@alogicalparadox.com>
Expand Down
2 changes: 2 additions & 0 deletions karma.conf.js
@@ -1,4 +1,6 @@
'use strict';

/* eslint-disable no-process-env */
var packageJson = require('./package.json');
var defaultTimeout = 120000;
var browserifyIstanbul = require('browserify-istanbul');
Expand Down
28 changes: 12 additions & 16 deletions package.json
Expand Up @@ -25,6 +25,7 @@
"scripts": {
"bench": "node bench",
"build": "browserify --bare $npm_pakcage_main --standalone typeDetect -o type-detect.js",
"commit-msg": "validate-commit-msg",
"lint": "eslint --ignore-path .gitignore .",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
Expand All @@ -34,18 +35,13 @@
"test:node": "istanbul cover _mocha",
"upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"eslintConfig": {
"extends": [
"strict/es5"
],
"env": {
"es6": true
},
"extends": [
"strict/es5"
],
"globals": {
"HTMLElement": false
},
Expand All @@ -57,13 +53,13 @@
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.0",
"browserify": "^13.0.0",
"browserify-istanbul": "^1.0.0",
"coveralls": "2.11.9",
"eslint": "^2.9.0",
"eslint-config-strict": "^8.5.0",
"eslint-plugin-filenames": "^0.2.0",
"ghooks": "^1.0.1",
"browserify": "^14.3.0",
"browserify-istanbul": "^2.0.0",
"coveralls": "2.13.0",
"eslint": "^3.19.0",
"eslint-config-strict": "^13.0.0",
"eslint-plugin-filenames": "^1.1.0",
"husky": "^0.13.3",
"istanbul": "^0.4.2",
"karma": "^1.1.2",
"karma-browserify": "^5.0.2",
Expand All @@ -74,7 +70,7 @@
"lcov-result-merger": "^1.2.0",
"mocha": "^3.0.0",
"phantomjs-prebuilt": "^2.1.5",
"semantic-release": "^4.3.5",
"semantic-release": "^6.3.2",
"simple-assert": "^1.0.0",
"travis-after-all": "^1.4.4",
"validate-commit-msg": "^2.3.1"
Expand Down
1 change: 1 addition & 0 deletions test/dom.js
@@ -1,4 +1,5 @@
'use strict';

var assert = require('simple-assert');
var type = require('..');
function describeIf(condition) {
Expand Down
1 change: 1 addition & 0 deletions test/index.js
@@ -1,4 +1,5 @@
'use strict';

var assert = require('simple-assert');
var type = require('..');
describe('Generic', function () {
Expand Down
1 change: 1 addition & 0 deletions test/new-ecmascript-types.js
@@ -1,4 +1,5 @@
'use strict';

var assert = require('simple-assert');
var type = require('..');
var symbolExists = typeof Symbol === 'function';
Expand Down
1 change: 1 addition & 0 deletions test/node.js
@@ -1,4 +1,5 @@
'use strict';

var assert = require('simple-assert');
var type = require('..');
var isNode = typeof process !== 'undefined' && typeof process.release === 'object' && process.release.name;
Expand Down

0 comments on commit 0bb99f7

Please sign in to comment.