@endo/lockdown 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/commit-debug.js +1 -1
  2. package/package.json +5 -4
package/commit-debug.js CHANGED
@@ -21,7 +21,7 @@ lockdown({
21
21
  // NOTE TO REVIEWERS: If you see the following line commented out,
22
22
  // this may be a development accident that should be fixed before merging.
23
23
  //
24
- errorTaming: 'unsafe',
24
+ errorTaming: 'unsafe-debug',
25
25
 
26
26
  // The default `{stackFiltering: 'concise'}` setting usually makes for a
27
27
  // better debugging experience, by severely reducing the noisy distractions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@endo/lockdown",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Wrappers for hardening JavaScript for Endo",
5
5
  "type": "module",
6
6
  "main": "pre.js",
@@ -21,7 +21,7 @@
21
21
  "lint": "eslint '**/*.js'"
22
22
  },
23
23
  "dependencies": {
24
- "ses": "^1.5.0"
24
+ "ses": "^1.7.0"
25
25
  },
26
26
  "files": [
27
27
  "LICENSE*",
@@ -43,7 +43,8 @@
43
43
  "homepage": "https://github.com/endojs/endo#readme",
44
44
  "ava": {
45
45
  "files": [
46
- "test/**/test-*.js"
46
+ "test/**/test-*.*",
47
+ "test/**/*.test.*"
47
48
  ]
48
49
  },
49
50
  "eslintConfig": {
@@ -57,5 +58,5 @@
57
58
  "publishConfig": {
58
59
  "access": "public"
59
60
  },
60
- "gitHead": "08e59bc0d262565165636c2e3875bbe3dcb91cf8"
61
+ "gitHead": "444c81ad3ecc1b0a449023a9c65e9be2fa17db21"
61
62
  }