Skip to content

Commit

Permalink
Publish new version
Browse files Browse the repository at this point in the history
  • Loading branch information
awlayton committed Feb 19, 2020
1 parent dbb1e08 commit 9ec2bf6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ etc, and public OADA client registrations.
The library can be installed with `npm` using

```sh
$ npm install oada-lookup
$ npm install @oada/oada-lookup
```

### Running the tests, coverage, and style checks
Expand All @@ -32,13 +32,6 @@ The coverage report is generated by:
$ npm run cover
```

Gulp runs `jshint` (lint) and `jscs` (style) with:

```sh
$ gulp lint
$ gulp style
```

### wellKnown(hostname, suffix, options, cb)

Fetch a [Well-Known (RFC 5785)][well-known] Resource. The hostname will
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oada-lookup",
"version": "0.4.1",
"name": "@oada/oada-lookup",
"version": "1.0.0",
"description": "JavaScript utility library to lookup OADA documents such as Well-Known (RFC 5785) resource, e.g., oada-configuration, openid-configuration, etc, and public OADA client registrations",
"keywords": [
"OADA",
Expand All @@ -14,23 +14,20 @@
"url": "https://github.com/OADA/oada-lookup-js/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Andrew Balmos",
"email": "abalmos@purdue.edu"
},
"author": "Andrew Balmos <abalmos@purdue.edu>",
"main": "lookup.js",
"repository": {
"type": "git",
"url": "https://github.com/OADA/oada-lookup-js.git"
"url": "git+https://github.com/OADA/oada-lookup-js.git"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "./node_modules/.bin/_mocha -w",
"test": "_mocha -w",
"fix": "prettier-standard",
"lint": "prettier-standard --lint",
"cover": "./node_modules/.bin/istanbul cover --preload-sources -x gulpfile.js node_modules/.bin/_mocha -- -R spec",
"cover": "istanbul cover mocha -- -R spec",
"clean": "rm -rf ./coverage"
},
"mocha": {
Expand All @@ -52,5 +49,8 @@
"mocha": "^7.0.1",
"nock": "^12.0.1",
"prettier-standard": "^16.1.0"
},
"directories": {
"test": "test"
}
}

0 comments on commit 9ec2bf6

Please sign in to comment.