Skip to content

Commit

Permalink
fix: package json (#11)
Browse files Browse the repository at this point in the history
* fix: package.json main and bin paths

* docs: fix npm install instruction
  • Loading branch information
nugaon committed Jun 28, 2022
1 parent 6cdf0d0 commit 92bb879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
**Requirements:** Docker

```shell
$ npm install -g @fairdataprotocol/fdp-play
$ npm install -g @fairdatasociety/fdp-play
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"url": "https://github.com/fairDataProtocol/fdp-play.git"
},
"bin": {
"fdp-play": "./dist/src/index.js"
"fdp-play": "./dist/index.js"
},
"main": "dist/src/index.js",
"main": "dist/index.js",
"files": [
"dist"
],
Expand Down

0 comments on commit 92bb879

Please sign in to comment.