angular2-prettyjson
Advanced tools
Comparing version 2.0.6 to 3.0.0
125
package.json
{ | ||
"name": "angular2-prettyjson", | ||
"version": "2.0.6", | ||
"description": "Angular2 json utils. Includes a pipe to replace Angular's built in json pipe which implements spacing, avoids circular references. Also includes a component that will pretty print json with syntax highlight", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "mocha spec/*.spec.js", | ||
"build": "./node_modules/.bin/ngc -p ./tsconfig.json" | ||
}, | ||
"repository": "https://github.com/matiboy/angular2-prettyjson", | ||
"bugs": { | ||
"url": "https://github.com/matiboy/angular2-prettyjson/issues", | ||
"email": "mathieu+angular2-prettyjson-issues@redapesolutions.com" | ||
}, | ||
"keywords": [ | ||
"angular2", | ||
"angular4", | ||
"@angular", | ||
"json", | ||
"pipe", | ||
"pretty" | ||
], | ||
"author": "Matiboy <mathieu@redapesolutions.com>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@angular/core": ">=2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "^2.4.1", | ||
"@angular/compiler": "^2.4.1", | ||
"@angular/compiler-cli": "^2.4.1", | ||
"@angular/platform-server": "^2.4.1", | ||
"chai": "^3.5.0", | ||
"expect": "^1.20.1", | ||
"htmltree": "0.0.4", | ||
"karma": "^0.13.22", | ||
"karma-chai": "^0.1.0", | ||
"karma-mocha": "^1.0.1", | ||
"karma-phantomjs-launcher": "^1.0.0", | ||
"karma-sinon": "^1.0.5", | ||
"karma-typescript-preprocessor2": "^1.1.1", | ||
"karma-webpack": "^1.7.0", | ||
"mocha": "^2.5.3", | ||
"phantomjs-prebuilt": "^2.1.7", | ||
"reflect-metadata": "^0.1.3", | ||
"sinon": "^1.17.4", | ||
"ts-loader": "^0.8.2", | ||
"typescript": "2.2.1", | ||
"webpack": "^1.13.1" | ||
} | ||
"name": "angular2-prettyjson", | ||
"version": "3.0.0", | ||
"description": "Angular2 json utils. Includes a pipe to replace Angular's built in json pipe which implements spacing, avoids circular references. Also includes a component that will pretty print json with syntax highlight", | ||
"main": "./bundles/angular2-prettyjson.umd.js", | ||
"module": "./esm5/angular2-prettyjson.js", | ||
"es2015": "./esm2015/angular2-prettyjson.js", | ||
"scripts": { | ||
"build": "node build.js", | ||
"test": "karma start", | ||
"pack-lib": "npm pack ./dist", | ||
"publish-lib": "npm publish ./dist", | ||
"publish-lib:next": "npm publish --tag next ./dist", | ||
"compodoc": "compodoc -p tsconfig.json", | ||
"compodoc-serve": "compodoc -s" | ||
}, | ||
"typings": "./angular2-prettyjson.d.ts", | ||
"author": "", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/matiboy/angular2-prettyjson.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/matiboy/angular2-prettyjson/issues" | ||
}, | ||
"homepage": "https://github.com/matiboy/angular2-prettyjson", | ||
"keywords": [ | ||
"angular", | ||
"javascript", | ||
"typescript" | ||
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"tslib": "^1.7.1" | ||
}, | ||
"peerDependencies": { | ||
"@angular/core": ">= 2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/animations": "5.0.0", | ||
"@angular/common": "5.0.0", | ||
"@angular/compiler": "5.0.0", | ||
"@angular/compiler-cli": "5.0.0", | ||
"@angular/core": "5.0.0", | ||
"@angular/platform-browser": "5.0.0", | ||
"@angular/platform-browser-dynamic": "5.0.0", | ||
"@angular/platform-server": "5.0.0", | ||
"@compodoc/compodoc": "^1.0.3", | ||
"@types/jasmine": "2.6.2", | ||
"@types/node": "8.0.47", | ||
"chalk": "2.3.0", | ||
"codelyzer": "4.0.0", | ||
"core-js": "2.5.1", | ||
"istanbul-instrumenter-loader": "3.0.0", | ||
"jasmine-core": "2.8.0", | ||
"karma": "1.7.1", | ||
"karma-chrome-launcher": "2.2.0", | ||
"karma-coverage-istanbul-reporter": "1.3.0", | ||
"karma-jasmine": "1.1.0", | ||
"karma-sourcemap-loader": "0.3.7", | ||
"karma-spec-reporter": "0.0.31", | ||
"karma-webpack": "2.0.5", | ||
"reflect-metadata": "0.1.10", | ||
"rollup": "0.50.0", | ||
"rollup-plugin-license": "0.5.0", | ||
"rollup-plugin-node-resolve": "3.0.0", | ||
"rollup-plugin-sourcemaps": "0.4.2", | ||
"rxjs": "5.5.2", | ||
"shelljs": "0.7.8", | ||
"source-map-loader": "0.2.3", | ||
"ts-loader": "3.1.1", | ||
"tslint": "5.8.0", | ||
"typescript": "2.4.2", | ||
"uglify-js": "3.1.6", | ||
"webpack": "3.8.1", | ||
"zone.js": "0.8.18" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# Angular 2 Pretty Json v2.0.6 | ||
# Angular 2 Pretty Json v2.0.7 | ||
@@ -3,0 +3,0 @@ A module for Angular 2 debug output of objects. Contains a pipe similar to [JsonPipe](https://angular.io/docs/ts/latest/api/common/index/JsonPipe-class.html) but adds support for spacing and handling of circular structures. |
@@ -1,1 +0,1 @@ | ||
export declare function serializer(): (key: string, value: any) => any; | ||
export declare function serializer(): (this: any, key: string, value: any) => any; |
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
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
61807
0
2
37
20
648
2
1
+ Addedtslib@^1.7.1
+ Addedtslib@1.14.1(transitive)
- Removed@angular/core@>=2.0.0