package{,-lock}.json additions

These were being changed every time npm was run.
master
Mike Gerwitz 2020-08-19 15:39:20 -04:00
parent 9111c3373e
commit 6743bfff4a
4 changed files with 1611 additions and 16 deletions

View File

@ -14,6 +14,14 @@ commits that introduce the changes. To make a new release, run
`tools/mkrelease`, which will handle updating the heading for you. `tools/mkrelease`, which will handle updating the heading for you.
NEXT
====
Miscellaneous
-------------
- `package-lock.json` additions.
v17.6.0 (2020-08-19) v17.6.0 (2020-08-19)
==================== ====================
This release provides a new environment variable for JVM tuning. It does This release provides a new environment variable for JVM tuning. It does

3
package-lock.json generated 100644
View File

@ -0,0 +1,3 @@
{
"lockfileVersion": 1
}

1586
progtest/package-lock.json generated 100644

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,16 @@
{ {
"name": "tame-progtest", "name": "tame-progtest",
"description": "TAME Program testing", "description": "TAME Program testing",
"version": "0.0.0", "version": "0.0.0",
"author": "Ryan Specialty Group, LLC", "author": "Ryan Specialty Group, LLC",
"dependencies": {
"dependencies": { "easejs": "0.2.9",
"easejs": "0.2.9", "js-yaml": "3.10.0"
"js-yaml": "3.10.0" },
}, "devDependencies": {
"devDependencies": { "browserify": "16.1.0",
"browserify": "16.1.0", "mocha": "5.0.1",
"mocha": "5.0.1", "chai": "4.1.2"
"chai": "4.1.2" },
}, "license": "GPL-3.0+"
"license": "GPL-3.0+"
} }