Socket
Socket
Sign inDemoInstall

conf

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conf - npm Package Compare versions

Comparing version 6.2.4 to 7.0.0

dist/package.json

70

package.json
{
"name": "conf",
"version": "6.2.4",
"version": "7.0.0",
"description": "Simple config handling for your app or module",

@@ -13,11 +13,13 @@ "license": "MIT",

},
"main": "dist/source",
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"test": "xo && ava && tsd"
"test": "xo && npm run build && nyc ava",
"build": "del-cli dist && tsc",
"prepare": "npm run build"
},
"files": [
"index.js",
"index.d.ts"
"dist/source"
],

@@ -44,24 +46,52 @@ "keywords": [

"dependencies": {
"ajv": "^6.10.2",
"debounce-fn": "^3.0.1",
"dot-prop": "^5.0.0",
"ajv": "^6.12.2",
"debounce-fn": "^4.0.0",
"dot-prop": "^5.2.0",
"env-paths": "^2.2.0",
"json-schema-typed": "^7.0.1",
"make-dir": "^3.0.0",
"json-schema-typed": "^7.0.3",
"make-dir": "^3.1.0",
"onetime": "^5.1.0",
"pkg-up": "^3.0.1",
"semver": "^6.2.0",
"write-file-atomic": "^3.0.0"
"pkg-up": "^3.1.0",
"semver": "^7.3.2",
"write-file-atomic": "^3.0.3"
},
"devDependencies": {
"@types/node": "^12.7.4",
"ava": "^2.3.0",
"clear-module": "^4.0.0",
"@ava/typescript": "^1.1.1",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/node": "^14.0.14",
"@types/semver": "^7.3.1",
"@types/write-file-atomic": "^3.0.1",
"ava": "^3.9.0",
"clear-module": "^4.1.1",
"del": "^5.1.0",
"del-cli": "^3.0.1",
"delay": "^4.3.0",
"p-event": "^4.1.0",
"tempy": "^0.3.0",
"tsd": "^0.11.0",
"xo": "^0.24.0"
"nyc": "^15.1.0",
"p-event": "^4.2.0",
"tempy": "^0.5.0",
"tsd": "^0.12.1",
"typescript": "3.9.6",
"xo": "^0.32.0"
},
"types": "dist/source",
"ava": {
"files": [
"test/*",
"!test/index.test-d.ts"
],
"timeout": "1m",
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
}
}
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/test/**"
]
}
}

@@ -1,2 +0,2 @@

# conf [![Build Status](https://travis-ci.org/sindresorhus/conf.svg?branch=master)](https://travis-ci.org/sindresorhus/conf)
# conf [![Build Status](https://travis-ci.com/sindresorhus/conf.svg?branch=master)](https://travis-ci.com/github/sindresorhus/conf)

@@ -64,3 +64,3 @@ > Simple config handling for your app or module

Under the hood, the JSON Schema validator [ajv](https://github.com/epoberezkin/ajv) is used to validate your config. We use [JSON Schema draft-07](http://json-schema.org/latest/json-schema-validation.html) and support all [validation keywords](https://github.com/epoberezkin/ajv/blob/master/KEYWORDS.md) and [formats](https://github.com/epoberezkin/ajv#formats).
Under the hood, the JSON Schema validator [ajv](https://github.com/epoberezkin/ajv) is used to validate your config. We use [JSON Schema draft-07](https://json-schema.org/latest/json-schema-validation.html) and support all [validation keywords](https://github.com/epoberezkin/ajv/blob/master/KEYWORDS.md) and [formats](https://github.com/epoberezkin/ajv#formats).

@@ -67,0 +67,0 @@ You should define your schema as an object where each key is the name of your data's property and each value is a JSON schema used to validate that property. See more [here](https://json-schema.org/understanding-json-schema/reference/object.html#properties).

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc