Socket
Socket
Sign inDemoInstall

json-strictify

Package Overview
Dependencies
4
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.3.0 to 6.3.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

## 6.3.1 (2019-12-04)
- fixed missing `tslib` dependency (@kylejlin)
## 6.3.0 (2019-11-12)

@@ -2,0 +6,0 @@

137

package.json
{
"name": "json-strictify",
"version": "6.3.0",
"description": "Safely serialize a value to JSON without unintended loss of data or going into an infinite loop due to circular references.",
"engines": {
"node": ">=10"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm ci && rm -rf dist/ && npm test && tsc --build tsconfig.json",
"test": "npm run lint && npm run test-with-coverage && npm audit",
"lint": "eslint --ext=.ts 'src/**/*.ts' 'test/**/*.ts'",
"mocha": "mocha",
"test-with-coverage": "nyc mocha 'test/**/*.spec.ts'",
"coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/pigulla/json-strictify.git"
},
"keywords": [
"JSON",
"debugging",
"validation",
"stringify",
"strict"
],
"author": "Raphael Pigulla <pigulla@four66.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pigulla/json-strictify/issues"
},
"homepage": "https://github.com/pigulla/json-strictify",
"dependencies": {
"json-pointer": "^0.6.0",
"ts-custom-error": "^3.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/json-pointer": "^1.0.30",
"@types/lodash.noop": "^3.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"lodash.noop": "^3.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"ts-node": "^8.5.0",
"tsconfig-paths": "^3.9.0",
"type-fest": "^0.8.1",
"typescript": "^3.7.2"
}
"name": "json-strictify",
"version": "6.3.1",
"description": "Safely serialize a value to JSON without unintended loss of data or going into an infinite loop due to circular references.",
"engines": {
"node": ">=10"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm ci && rm -rf dist/ && npm test && tsc --build tsconfig.json",
"test": "tsc --noEmit && npm run lint && npm run test-with-coverage && npm audit",
"lint": "eslint --ext=.ts 'src/**/*.ts' 'test/**/*.ts'",
"mocha": "mocha",
"test-with-coverage": "nyc mocha 'test/**/*.spec.ts'",
"coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/pigulla/json-strictify.git"
},
"keywords": [
"JSON",
"debugging",
"validation",
"stringify",
"strict"
],
"author": "Raphael Pigulla <pigulla@four66.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pigulla/json-strictify/issues"
},
"homepage": "https://github.com/pigulla/json-strictify",
"dependencies": {
"json-pointer": "^0.6.0",
"ts-custom-error": "^3.1.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/json-pointer": "^1.0.30",
"@types/lodash.noop": "^3.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"lodash.noop": "^3.0.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"type-fest": "^0.8.1",
"typescript": "^3.7.3"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc