Skip to content

Commit

Permalink
Remove bin/, rename test/ dir, update copyright.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Mar 8, 2021
1 parent b9813ad commit 91ad583
Show file tree
Hide file tree
Showing 31 changed files with 30 additions and 289 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run karma tests
- name: Run karma test
run: npm run test-karma
lint:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2017-2020, Digital Bazaar, Inc.
Copyright (c) 2017-2021, Digital Bazaar, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/digitalbazaar/vc-js.png?branch=master)](https://travis-ci.org/digitalbazaar/vc-js)
[![NPM Version](https://img.shields.io/npm/v/vc-js.svg?style=flat-square)](https://npm.im/vc-js)

> A Javascript library for issuing and verifying Verifiable Credentials
> A Javascript library for issuing and verifying Verifiable Credentials.
## Table of Contents

Expand Down
239 changes: 0 additions & 239 deletions bin/vc-js

This file was deleted.

3 changes: 0 additions & 3 deletions bin/vc-js-issuer

This file was deleted.

3 changes: 0 additions & 3 deletions bin/vc-js-verifier

This file was deleted.

8 changes: 0 additions & 8 deletions bin/vc-test

This file was deleted.

8 changes: 4 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/

module.exports = function(config) {
Expand All @@ -13,7 +13,7 @@ module.exports = function(config) {

// list of files / patterns to load in the browser
files: [
'tests/*.spec.js'
'test/*.spec.js'
],

// list of files to exclude
Expand Down Expand Up @@ -75,7 +75,7 @@ module.exports = function(config) {
// config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,

// enable / disable watching file and executing tests whenever any
// enable / disable watching file and executing test whenever any
// file changes
autoWatch: false,

Expand All @@ -96,7 +96,7 @@ module.exports = function(config) {
},

// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
// if true, Karma captures browsers, runs the test and exits
singleRun: true,

});
Expand Down
2 changes: 1 addition & 1 deletion lib/CredentialIssuancePurpose.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/
'use strict';
const jsonld = require('jsonld');
Expand Down
2 changes: 1 addition & 1 deletion lib/contexts/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion lib/contexts/odrl.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion lib/contexts/vc-examples-v1.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/

/* eslint-disable quote-props */
Expand Down
2 changes: 1 addition & 1 deletion lib/documentLoader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
* Copyright (c) 2019-2021 Digital Bazaar, Inc. All rights reserved.
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
*
* @author David I. Lehn
*
* Copyright 2017-2020 Digital Bazaar, Inc.
* Copyright 2017-2021 Digital Bazaar, Inc.
*/
module.exports = require('./vc.js');
2 changes: 1 addition & 1 deletion lib/vc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @author David I. Lehn
*
* @license BSD 3-Clause License
* Copyright (c) 2017-2020 Digital Bazaar, Inc.
* Copyright (c) 2017-2021 Digital Bazaar, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
Loading

0 comments on commit 91ad583

Please sign in to comment.