1{ 2 "name": "json-stringify-nice", 3 "version": "1.1.4", 4 "description": "Stringify an object sorting scalars before objects, and defaulting to 2-space indent", 5 "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)", 6 "license": "ISC", 7 "scripts": { 8 "test": "tap", 9 "posttest": "npm run lint", 10 "snap": "tap", 11 "postsnap": "npm run lintfix", 12 "eslint": "eslint", 13 "lint": "npm run eslint -- index.js test/**/*.js", 14 "lintfix": "npm run lint -- --fix", 15 "preversion": "npm test", 16 "postversion": "npm publish", 17 "postpublish": "git push origin --follow-tags" 18 }, 19 "tap": { 20 "test-env": [ 21 "LC_ALL=sk" 22 ], 23 "check-coverage": true 24 }, 25 "devDependencies": { 26 "eslint": "^7.25.0", 27 "eslint-plugin-import": "^2.22.1", 28 "eslint-plugin-node": "^11.1.0", 29 "eslint-plugin-promise": "^5.1.0", 30 "eslint-plugin-standard": "^5.0.0", 31 "tap": "^15.0.6" 32 }, 33 "funding": { 34 "url": "https://github.com/sponsors/isaacs" 35 }, 36 "repository": "https://github.com/isaacs/json-stringify-nice", 37 "files": [ 38 "index.js" 39 ] 40} 41