Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package name to vc-test-suite-implementations. #92

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --legacy-peer-deps
Expand All @@ -24,11 +24,11 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --legacy-peer-deps
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# isomorphic-js-lib-template Changelog
# vc-test-suite-implementations Changelog

## 2.0.0 - 2023-12-11

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# VC API Test Suite Implementations _(vc-api-test-suite-implementations)_
# VC Test Suite Implementations _(vc-test-suite-implementations)_

[![Build status](https://img.shields.io/github/workflow/status/w3c-ccg/vc-api-test-suite-implementations/Node.js%20CI)](https://github.com/w3c-ccg/vc-api-test-suite-implementations/actions?query=workflow%3A%22Node.js+CI%22)
[![Build status](https://img.shields.io/github/workflow/status/w3c-ccg/vc-test-suite-implementations/Node.js%20CI)](https://github.com/w3c-ccg/vc-test-suite-implementations/actions?query=workflow%3A%22Node.js+CI%22)

> Implementations list used across various W3C CCG test suites.

## Table of Contents

- [VC API Test Suite Implementations _(vc-api-test-suite-implementations)_](#vc-api-test-suite-implementations-vc-api-test-suite-implementations)
- [VC Test Suite Implementations _(vc-test-suite-implementations)_](#vc-test-suite-implementations-vc-test-suite-implementations)
- [Table of Contents](#table-of-contents)
- [Background](#background)
- [Security](#security)
Expand Down Expand Up @@ -39,16 +39,16 @@ client secrets used for signing zcaps or HTTP Signature Headers.
To install via NPM:

```
npm install w3c-ccg/vc-api-test-suite-implementations
npm install w3c-ccg/vc-test-suite-implementations
```

### Development

To install locally (for development):

```
git clone https://github.com/w3c-ccg/vc-api-test-suite-implementations.git
cd vc-api-test-suite-implementations
git clone https://github.com/w3c-ccg/vc-test-suite-implementations.git
cd vc-test-suite-implementations
npm install
```

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "vc-api-test-suite-implementations",
"name": "vc-test-suite-implementations",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/w3c-ccg/vc-api-test-suite-implementations",
"homepage": "https://github.com/w3c-ccg/vc-test-suite-implementations",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
Expand All @@ -12,10 +12,10 @@
"main": "./lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/w3c-ccg/vc-api-test-suite-implementations"
"url": "https://github.com/w3c-ccg/vc-test-suite-implementations"
},
"bugs": {
"url": "https://github.com/w3c-ccg/vc-api-test-suite-implementations/issues",
"url": "https://github.com/w3c-ccg/vc-test-suite-implementations/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
Expand All @@ -36,10 +36,10 @@
"devDependencies": {
"chai": "^4.3.3",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-digitalbazaar": "^4.0.1",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-unicorn": "^43.0.0",
"eslint": "^8.55.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-unicorn": "^49.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
Expand All @@ -58,7 +58,7 @@
"util": false
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"keywords": [
"Decentralized",
Expand Down
Loading