@ngx-pwa/local-storage
Advanced tools
Comparing version 6.0.0-rc.1 to 6.0.0-rc.2
{ | ||
"name": "@ngx-pwa/local-storage", | ||
"version": "6.0.0-rc.1", | ||
"version": "6.0.0-rc.2", | ||
"description": "Efficient local storage module for Angular apps and PWA: simple API based on native localStorage API, but internally stored via the asynchronous IndexedDB API for performance, and wrapped in RxJS observables to be homogeneous with other Angular modules.", | ||
"main": "./bundles/local-storage.umd.js", | ||
"module": "./fesm5/local-storage.js", | ||
"es2015": "./fesm2015/local-storage.js", | ||
"fesm5": "./fesm5/local-storage.js", | ||
"fesm2015": "./fesm2015/local-storage.js", | ||
"typings": "./local-storage.d.ts", | ||
"sideEffects": false, | ||
"author": "Cyrille Tuzi", | ||
@@ -38,77 +31,20 @@ "license": "MIT", | ||
}, | ||
"engines": { | ||
"node": ">= 8.9.0", | ||
"npm": ">= 5.5.1" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf out-tsc dist/*", | ||
"prebuild": "npm run clean", | ||
"build": "node build.js", | ||
"build-demo": "tsc -p src/demo/", | ||
"build-demo:watch": "tsc -p src/demo/ -w", | ||
"serve": "lite-server -c=bs-config.json", | ||
"prestart": "npm run build-demo", | ||
"start": "concurrently \"npm run build-demo:watch\" \"npm run serve\"", | ||
"build-test": "tsc -p src/lib/tsconfig.spec.json", | ||
"build-test:watch": "tsc -p src/lib/tsconfig.spec.json -w", | ||
"pretest": "npm run build-test", | ||
"test": "concurrently \"npm run build-test:watch\" \"karma start karma.conf.js\"", | ||
"coverage": "karma start karma-coverage.conf.js --single-run", | ||
"pretest:once": "npm run build-test", | ||
"test:once": "karma start karma.conf.js --single-run", | ||
"preintegration": "npm run build && cd integration && npm run clean && npm install", | ||
"integration": "npm run integration:aot && npm run integration:jit", | ||
"integration:jit": "cd integration && npm run e2e", | ||
"integration:aot": "cd integration && npm run e2e:aot", | ||
"lint": "tslint ./src/**/*.ts -t verbose", | ||
"release": "standard-version", | ||
"reinstall": "rimraf node_modules && npm install", | ||
"publish": "npm publish dist --access public" | ||
}, | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"@angular/core": ">=6.0.0 <7.0.0", | ||
"@angular/common": ">=6.0.0 <7.0.0", | ||
"rxjs": ">=6.0.0 <7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "^6.0.0", | ||
"@angular/compiler": "^6.0.0", | ||
"@angular/compiler-cli": "^6.0.0", | ||
"@angular/core": "^6.0.0", | ||
"@angular/platform-browser": "^6.0.0", | ||
"@angular/platform-browser-dynamic": "^6.0.0", | ||
"@types/jasmine": "2.5.36", | ||
"@types/node": "^8.10.12", | ||
"camelcase": "^4.0.0", | ||
"concurrently": "3.4.0", | ||
"core-js": "^2.5.5", | ||
"glob": "^7.1.1", | ||
"jasmine-core": "^2.5.2", | ||
"karma": "^1.5.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-cli": "^1.0.1", | ||
"karma-coverage": "^1.1.1", | ||
"karma-edge-launcher": "^0.4.2", | ||
"karma-firefox-launcher": "^1.0.1", | ||
"karma-html-reporter": "^0.2.7", | ||
"karma-ie-launcher": "^1.0.0", | ||
"karma-jasmine": "^1.1.0", | ||
"karma-jasmine-html-reporter": "^0.2.2", | ||
"karma-remap-coverage": "^0.1.4", | ||
"karma-safari-launcher": "^1.0.0", | ||
"lite-server": "^2.2.2", | ||
"rimraf": "^2.6.1", | ||
"rollup": "^0.42.0", | ||
"rollup-plugin-commonjs": "^8.0.2", | ||
"rollup-plugin-node-resolve": "^3.0.0", | ||
"rollup-plugin-sourcemaps": "^0.4.1", | ||
"rollup-plugin-uglify": "^2.0.1", | ||
"rxjs": "^6.1.0", | ||
"standard-version": "^4.0.0", | ||
"systemjs": "^0.19.40", | ||
"tslint": "^4.4.2", | ||
"typescript": "~2.7.2", | ||
"zone.js": "^0.8.26" | ||
"rxjs": "^6.0.0" | ||
}, | ||
"main": "bundles/ngx-pwa-local-storage.umd.js", | ||
"module": "fesm5/ngx-pwa-local-storage.js", | ||
"es2015": "fesm2015/ngx-pwa-local-storage.js", | ||
"esm5": "esm5/ngx-pwa-local-storage.js", | ||
"esm2015": "esm2015/ngx-pwa-local-storage.js", | ||
"fesm5": "fesm5/ngx-pwa-local-storage.js", | ||
"fesm2015": "fesm2015/ngx-pwa-local-storage.js", | ||
"typings": "ngx-pwa-local-storage.d.ts", | ||
"metadata": "ngx-pwa-local-storage.metadata.json", | ||
"sideEffects": false, | ||
"dependencies": { | ||
"tslib": "^1.9.0" | ||
} | ||
} |
@@ -218,3 +218,3 @@ # Async local storage for Angular | ||
We follow [Angular LTS support](https://github.com/angular/angular/blob/master/docs/RELEASE_SCHEDULE.md), | ||
We follow [Angular LTS support](https://angular.io/guide/releases), | ||
meaning we support Angular 4 minimum, until October 2018. | ||
@@ -276,6 +276,2 @@ | ||
### Extend JSON Validator | ||
You can also extend the JSON validator, but if you do so, please contribute so everyone can enjoy. | ||
## Changelog | ||
@@ -282,0 +278,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
760634
0
42
5821
4
282
1
+ Addedtslib@^1.9.0