We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c531b commit 0d1a857Copy full SHA for 0d1a857
2 files changed
README.md
@@ -7,7 +7,7 @@ A parser for [JSON:API](https://jsonapi.org/) format that maps data to models us
7
## Installation
8
9
```bash
10
- npm install https://github.com/monade/json-api-parser.git
+ npm install @monade/json-api-parser
11
```
12
13
## Example usage
@@ -42,4 +42,3 @@ class User extends Model {
42
## TODO
43
* Documentation
44
* Edge case tests
45
-* Release on NPM
package.json
@@ -24,8 +24,8 @@
24
},
25
"scripts": {
26
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
27
- "prepublish:public": "build && yarn bump-version",
28
- "publish:public": "publish --access public",
+ "prepublish:public": "yarn build",
+ "publish:public": "yarn publish --access public",
29
"test": "jest"
30
31
"files": [
0 commit comments