@angular-redux/store
Version:
Angular 2 bindings for Redux
96 lines (95 loc) • 2.62 kB
JSON
{
"name": "@angular-redux/store",
"version": "6.4.5",
"description": "Angular 2 bindings for Redux",
"main": "./lib/src/index.js",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "npm run build:src && npm run build:testing",
"build:src": "ngc -p tsconfig.build.json",
"build:testing": "ngc -p tsconfig.testing.json",
"lint": "tslint 'src/**/*.ts'",
"prepublish": "npm run lint && npm test && npm run build",
"test": "nyc node tests.js",
"ci": "npm run lint && npm test",
"predoc": "rm -rf docs",
"doc": "typedoc --out docs --excludeExternals --excludePrivate --excludeNotExported -theme minimal --name @angular-redux/store --mode file --module commonjs --tsconfig tsconfig.docs.json"
},
"typings": "./lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/angular-redux/store.git"
},
"keywords": [
"redux",
"ng2",
"angular2",
"angular"
],
"author": "William Buchwalter <wbuchwalter@gmail.com> (http://github.com/wbuchwalter)",
"contributors": [
{
"name": "Evan Schultz",
"email": "evan@rangle.io",
"url": "https://github.com/e-schultz"
},
{
"name": "Michael Bennett",
"url": "https://github.com/bennett000"
},
{
"name": "Seth Davenport",
"url": "https://github.com/SethDavenport"
},
{
"name": "Cosmin Ronnin",
"url": "https://github.com/kosz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-redux/store/issues"
},
"homepage": "https://github.com/angular-redux/store#readme",
"devDependencies": {
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/http": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.36",
"core-js": "^2.4.1",
"jasmine": "^2.5.3",
"nyc": "^10.2.0",
"redux": "^3.5.0",
"reflect-metadata": "0.1.3",
"rimraf": "^2.5.2",
"rxjs": "^5.0.1",
"symbol-observable": "^1.0.1",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"typedoc": "^0.6.0",
"typescript": "^2.3.4",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^2.4.0 || ^4.0.0",
"redux": "^3.5.0"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"spec/**/*.spec"
],
"include": [
"src/**/*.ts"
]
}
}