1{ 2 "name": "init-package-json", 3 "version": "6.0.0", 4 "main": "lib/init-package-json.js", 5 "scripts": { 6 "test": "tap", 7 "lint": "eslint \"**/*.js\"", 8 "postlint": "template-oss-check", 9 "lintfix": "npm run lint -- --fix", 10 "snap": "tap", 11 "posttest": "npm run lint", 12 "template-oss-apply": "template-oss-apply --force" 13 }, 14 "repository": { 15 "type": "git", 16 "url": "https://github.com/npm/init-package-json.git" 17 }, 18 "author": "GitHub Inc.", 19 "license": "ISC", 20 "description": "A node module to get your node module started", 21 "dependencies": { 22 "npm-package-arg": "^11.0.0", 23 "promzard": "^1.0.0", 24 "read": "^2.0.0", 25 "read-package-json": "^7.0.0", 26 "semver": "^7.3.5", 27 "validate-npm-package-license": "^3.0.4", 28 "validate-npm-package-name": "^5.0.0" 29 }, 30 "devDependencies": { 31 "@npmcli/config": "^7.0.0", 32 "@npmcli/eslint-config": "^4.0.0", 33 "@npmcli/template-oss": "4.18.0", 34 "tap": "^16.0.1" 35 }, 36 "engines": { 37 "node": "^16.14.0 || >=18.0.0" 38 }, 39 "tap": { 40 "statements": 95, 41 "branches": 78, 42 "lines": 94, 43 "jobs": 1, 44 "test-ignore": "fixtures/", 45 "nyc-arg": [ 46 "--exclude", 47 "tap-snapshots/**" 48 ] 49 }, 50 "keywords": [ 51 "init", 52 "package.json", 53 "package", 54 "helper", 55 "wizard", 56 "wizerd", 57 "prompt", 58 "start" 59 ], 60 "files": [ 61 "bin/", 62 "lib/" 63 ], 64 "templateOSS": { 65 "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", 66 "version": "4.18.0", 67 "publish": true, 68 "ciVersions": [ 69 "16.14.0", 70 "16.x", 71 "18.0.0", 72 "18.x" 73 ] 74 } 75} 76