From 4b95e63f8b7c9a8794450fb5fe42ffa291ec69d2 Mon Sep 17 00:00:00 2001 From: Akim McMath Date: Mon, 28 Jan 2019 18:53:34 -0800 Subject: [PATCH] Move types to devDependencies This commit moves @types/es6-weak-map and @types/lodash to devDependencies. They are not required at runtime. --- LICENSE | 2 +- package-lock.json | 6 ++++-- package.json | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index 6c1f028..56b47d7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016 Akim McMath +Copyright (c) 2016-2019 Akim McMath Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/package-lock.json b/package-lock.json index b01fd59..972c31a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,12 +42,14 @@ "@types/es6-weak-map": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@types/es6-weak-map/-/es6-weak-map-1.2.0.tgz", - "integrity": "sha1-2fb4WDaaiLvGnvQCOAgfLWu8hhQ=" + "integrity": "sha1-2fb4WDaaiLvGnvQCOAgfLWu8hhQ=", + "dev": true }, "@types/lodash": { "version": "4.14.120", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.120.tgz", - "integrity": "sha512-jQ21kQ120mo+IrDs1nFNVm/AsdFxIx2+vZ347DbogHJPd/JzKNMOqU6HCYin1W6v8l5R9XSO2/e9cxmn7HAnVw==" + "integrity": "sha512-jQ21kQ120mo+IrDs1nFNVm/AsdFxIx2+vZ347DbogHJPd/JzKNMOqU6HCYin1W6v8l5R9XSO2/e9cxmn7HAnVw==", + "dev": true }, "@types/mocha": { "version": "5.2.5", diff --git a/package.json b/package.json index 9daddde..4f63cec 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,8 @@ "license": "MIT", "devDependencies": { "@types/chai": "^4.1.7", + "@types/es6-weak-map": "^1.2.0", + "@types/lodash": "^4.14.120", "@types/mocha": "^5.2.5", "@types/sinon": "^7.0.5", "@types/sinon-chai": "^3.2.2", @@ -48,8 +50,6 @@ "typescript": "^3.2.4" }, "dependencies": { - "@types/es6-weak-map": "^1.2.0", - "@types/lodash": "^4.14.120", "es6-weak-map": "^2.0.1", "lodash": "^4.13.1" },