📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@agoric/access-token

Package Overview
Dependencies
Maintainers
10
Versions
2829
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/access-token - npm Package Compare versions

Comparing version

to
0.4.22-dev-533d84a.0

11

package.json
{
"name": "@agoric/access-token",
"version": "0.4.22-dev-52e0339.0+52e0339",
"version": "0.4.22-dev-533d84a.0+533d84a",
"description": "Persistent credentials for Agoric users, backed by a simple JSON file",

@@ -13,3 +13,3 @@ "type": "module",

"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:c8": "c8 --all $C8_OPTIONS ava",
"test:xs": "exit 0",

@@ -22,2 +22,3 @@ "lint": "run-s --continue-on-error lint:*",

"dependencies": {
"@agoric/internal": "0.3.3-dev-533d84a.0+533d84a",
"n-readlines": "^1.0.0",

@@ -31,3 +32,3 @@ "proper-lockfile": "^4.1.2",

"ava": "^5.3.0",
"c8": "^9.1.0"
"c8": "^10.1.3"
},

@@ -47,5 +48,5 @@ "publishConfig": {

"typeCoverage": {
"atLeast": 83.97
"atLeast": 83.57
},
"gitHead": "52e0339dbc10c331ae287e380d1e178f508841ac"
"gitHead": "533d84a756c981bd973def6437b9f05aa732caa3"
}
import test from 'ava';
import { tmpDir } from './tmp.js';
import tmp from 'tmp';
import { makeTempDirFactory } from '@agoric/internal/src/tmpDir.js';
import {

@@ -10,2 +11,4 @@ initJSONStore,

const tmpDir = makeTempDirFactory(tmp);
function testStorage(t, storage) {

@@ -43,3 +46,3 @@ t.falsy(storage.has('missing'));

test('storageInFile', async t => {
const [dbDir, cleanup] = await tmpDir('testdb');
const [dbDir, cleanup] = tmpDir('testdb');
t.teardown(cleanup);

@@ -46,0 +49,0 @@ t.is(isJSONStore(dbDir), false);

import test from 'ava';
import { tmpDir } from './tmp.js';
import tmp from 'tmp';
import { makeTempDirFactory } from '@agoric/internal/src/tmpDir.js';
import { getAccessToken } from '../src/access-token.js';
const tmpDir = makeTempDirFactory(tmp);
test('access tokens', async t => {
const [sharedStateDir, removeCallback] = await tmpDir('access-token-test');
const [sharedStateDir, removeCallback] = tmpDir('access-token-test');
const [a, b, c] = await Promise.all([

@@ -9,0 +11,0 @@ getAccessToken(1234, sharedStateDir),