@ngrx/store
Advanced tools
Comparing version 2.1.2 to 2.2.0
@@ -1,6 +0,6 @@ | ||
export * from './dispatcher'; | ||
export * from './ng2'; | ||
export * from './reducer'; | ||
export * from './state'; | ||
export * from './store'; | ||
export * from './utils'; | ||
export * from './src/dispatcher'; | ||
export * from './src/ng2'; | ||
export * from './src/reducer'; | ||
export * from './src/state'; | ||
export * from './src/store'; | ||
export * from './src/utils'; |
16
index.js
@@ -1,11 +0,7 @@ | ||
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
__export(require('./dispatcher')); | ||
__export(require('./ng2')); | ||
__export(require('./reducer')); | ||
__export(require('./state')); | ||
__export(require('./store')); | ||
__export(require('./utils')); | ||
export * from './src/dispatcher'; | ||
export * from './src/ng2'; | ||
export * from './src/reducer'; | ||
export * from './src/state'; | ||
export * from './src/store'; | ||
export * from './src/utils'; | ||
//# sourceMappingURL=index.js.map |
@@ -1,1 +0,1 @@ | ||
{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./dispatcher"},{"from":"./ng2"},{"from":"./reducer"},{"from":"./state"},{"from":"./store"},{"from":"./utils"}]} | ||
{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./src/dispatcher"},{"from":"./src/ng2"},{"from":"./src/reducer"},{"from":"./src/state"},{"from":"./src/store"},{"from":"./src/utils"}]} |
{ | ||
"name": "@ngrx/store", | ||
"version": "2.1.2", | ||
"version": "2.2.0", | ||
"description": "RxJS powered Redux for Angular2 apps", | ||
"main": "./index.js", | ||
"main": "./bundles/store.umd.js", | ||
"module": "./index.js", | ||
"scripts": { | ||
"clean": "rimraf node_modules typings dist tmp npm-debug.log && npm cache clean", | ||
"clean:test": "rimraf tmp", | ||
"clean:dist": "rimraf dist", | ||
"build:dist": "npm run clean:dist && ngc && cp package.json dist/package.json", | ||
"lint": "tslint src/**.ts", | ||
"test": "tsc -p spec && jasmine && npm run clean:test", | ||
"test:ngc": "ngc -p spec/tsconfig.ngc.json", | ||
"typings": "typings install", | ||
"prebuild:dist": "npm run typings", | ||
"prepublish:dist": "npm run build:dist" | ||
"karma": "karma start --single-run", | ||
"test:unit": "npm run karma", | ||
"test:ngc": "ngc -p ./spec/ngc/tsconfig.ngc.json", | ||
"test": "npm run test:unit && npm run test:ngc", | ||
"clean:pre": "rimraf release", | ||
"clean:post": "rimraf \"src/**/*.ngfactory.ts\"", | ||
"copy": "cpy LICENSE package.json README.md release", | ||
"build:js": "ngc -p tsconfig.dist.json", | ||
"build:umd": "rollup -c rollup.config.js", | ||
"build:uglify": "uglifyjs -c --screw-ie8 --comments -o ./release/bundles/store.min.umd.js ./release/bundles/store.umd.js", | ||
"prebuild": "npm run test && npm run clean:pre", | ||
"postbuild": "npm run clean:post && npm run copy", | ||
"build": "npm run build:js && npm run build:umd && npm run build:uglify" | ||
}, | ||
@@ -33,33 +37,41 @@ "repository": { | ||
"homepage": "https://github.com/ngrx/store#readme", | ||
"peerDependencies": { | ||
"@angular/core": "^2.0.0", | ||
"rxjs": "^5.0.0-beta.12", | ||
"@ngrx/core": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "^2.0.0-rc.5", | ||
"@angular/compiler": "^2.0.0-rc.5", | ||
"@angular/compiler-cli": "^0.5.0", | ||
"@angular/core": "^2.0.0-rc.5", | ||
"@angular/platform-browser": "^2.0.0-rc.5", | ||
"@angular/platform-server": "^2.0.0-rc.5", | ||
"@angular/tsc-wrapped": "^0.2.2", | ||
"@ngrx/core": "^1.0.0", | ||
"@types/jasmine": "^2.2.31", | ||
"@types/node": "^6.0.33", | ||
"@angular/common": "^2.0.0", | ||
"@angular/compiler": "^2.0.0", | ||
"@angular/compiler-cli": "^0.6.0", | ||
"@angular/core": "^2.0.0", | ||
"@angular/platform-browser": "^2.0.0", | ||
"@angular/platform-browser-dynamic": "^2.0.0", | ||
"@angular/platform-server": "^2.0.0", | ||
"@ngrx/core": "^1.2.0", | ||
"@types/jasmine": "^2.2.33", | ||
"@types/node": "^6.0.38", | ||
"awesome-typescript-loader": "^2.2.1", | ||
"core-js": "^2.4.1", | ||
"es6-promise": "^3.0.2", | ||
"es6-shim": "^0.35.0", | ||
"jasmine": "^2.4.1", | ||
"jasmine-core": "^2.4.1", | ||
"lodash": "^3.10.1", | ||
"reflect-metadata": "0.1.2", | ||
"rimraf": "^2.5.2", | ||
"rxjs": "5.0.0-beta.6", | ||
"tslint": "^3.4.0", | ||
"typescript": "next", | ||
"typings": "^0.8.1", | ||
"zone.js": "^0.6.12" | ||
}, | ||
"peerDependencies": { | ||
"@ngrx/core": "^1.0.0", | ||
"rxjs": "^5.0.0-beta.6", | ||
"@angular/core": "^2.0.0-rc.5" | ||
}, | ||
"typings": "./index.d.ts" | ||
"cpy-cli": "^1.0.1", | ||
"istanbul-instrumenter-loader": "^0.2.0", | ||
"jasmine": "^2.5.0", | ||
"karma": "^1.2.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
"karma-coverage": "^1.1.1", | ||
"karma-jasmine": "^1.0.2", | ||
"karma-mocha-reporter": "^2.1.0", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "^1.8.0", | ||
"rimraf": "^2.5.4", | ||
"rollup": "^0.34.13", | ||
"rxjs": "^5.0.0-beta.11", | ||
"ts-loader": "^0.8.2", | ||
"tslint": "^3.15.1", | ||
"tslint-loader": "^2.1.5", | ||
"typescript": "^2.0.2", | ||
"uglifyjs": "^2.4.10", | ||
"webpack": "^2.1.0-beta.21", | ||
"zone.js": "^0.6.17" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
53451
28
476
0
169
32
1
1