-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from baptistechardon/fix_missing_license_readme
build: add license and readme to built library
- Loading branch information
Showing
4 changed files
with
127 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,17 @@ | ||
{ | ||
"name": "ngrx-store-localstorage", | ||
"version": "13.0.0", | ||
"description": "State and local storage syncing for @ngrx/store", | ||
"name": "ngrx-store-localstorage-root", | ||
"version": "0.0.0", | ||
"private": "true", | ||
"scripts": { | ||
"build_dist": "npm run clean && ng build lib --configuration production", | ||
"build_dist": "npm run clean && ng build lib --configuration production && npm run copy_lib_assets", | ||
"clean": "rimraf dist", | ||
"lint": "ng lint --fix", | ||
"ng": "ng", | ||
"pretest": "npm run lint", | ||
"test": "nyc ts-node -O '{\"module\": \"commonjs\"}' node_modules/jasmine/bin/jasmine", | ||
"prepare": "husky install" | ||
"prepare": "husky install", | ||
"copy_lib_assets": "copyfiles README.md CHANGELOG.md LICENSE ./dist/lib/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:btroncone/ngrx-store-localstorage.git" | ||
}, | ||
"keywords": [ | ||
"redux", | ||
"ngrx", | ||
"store", | ||
"localstorage", | ||
"rxjs" | ||
], | ||
"author": "Brian Troncone", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/btroncone/ngrx-store-localstorage/issues" | ||
}, | ||
"homepage": "https://github.com/btroncone/ngrx-store-localstorage#readme", | ||
"dependencies": { | ||
"@angular/animations": "~13.0.0", | ||
"@angular/common": "~13.0.0", | ||
|
@@ -59,6 +43,7 @@ | |
"@types/node": "^14.17.0", | ||
"@typescript-eslint/eslint-plugin": "5.3.0", | ||
"@typescript-eslint/parser": "5.3.0", | ||
"copyfiles": "^2.4.1", | ||
"crypto-js": "^4.0.0", | ||
"es6-shim": "^0.35.6", | ||
"eslint": "^8.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
"allowedNonPeerDependencies": [ | ||
"deepmerge" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
{ | ||
"name": "ngrx-store-localstorage", | ||
"version": "13.0.0", | ||
"description": "State and local storage syncing for @ngrx/store", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:btroncone/ngrx-store-localstorage.git" | ||
}, | ||
"keywords": [ | ||
"redux", | ||
"ngrx", | ||
"store", | ||
"localstorage", | ||
"rxjs" | ||
], | ||
"author": "Brian Troncone", | ||
"bugs": { | ||
"url": "https://github.com/btroncone/ngrx-store-localstorage/issues" | ||
}, | ||
"homepage": "https://github.com/btroncone/ngrx-store-localstorage#readme", | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"@angular/common": "^13.0.0", | ||
"@angular/core": "^13.0.0", | ||
|