{ "name": "conf", "version": "7.1.2", "description": "Simple config handling for your app or module", "license": "MIT", "repository": "sindresorhus/conf", "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "main": "dist/source", "engines": { "node": ">=10" }, "scripts": { "test": "xo && npm run build && nyc ava", "build": "del-cli dist && tsc", "prepare": "npm run build" }, "files": [ "dist/source" ], "keywords": [ "config", "store", "app", "storage", "conf", "configuration", "settings", "preferences", "json", "data", "persist", "persistent", "save", "load", "read", "write", "cache" ], "dependencies": { "ajv": "^6.12.2", "atomically": "^1.3.1", "debounce-fn": "^4.0.0", "dot-prop": "^5.2.0", "env-paths": "^2.2.0", "json-schema-typed": "^7.0.3", "make-dir": "^3.1.0", "onetime": "^5.1.0", "pkg-up": "^3.1.0", "semver": "^7.3.2" }, "devDependencies": { "@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", "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/**" ] } }