1{ 2 "name": "npm-install-checks", 3 "version": "6.3.0", 4 "description": "Check the engines and platform fields in package.json", 5 "main": "lib/index.js", 6 "dependencies": { 7 "semver": "^7.1.1" 8 }, 9 "devDependencies": { 10 "@npmcli/eslint-config": "^4.0.0", 11 "@npmcli/template-oss": "4.19.0", 12 "tap": "^16.0.1" 13 }, 14 "scripts": { 15 "test": "tap", 16 "lint": "eslint \"**/*.js\"", 17 "postlint": "template-oss-check", 18 "template-oss-apply": "template-oss-apply --force", 19 "lintfix": "npm run lint -- --fix", 20 "snap": "tap", 21 "posttest": "npm run lint" 22 }, 23 "repository": { 24 "type": "git", 25 "url": "https://github.com/npm/npm-install-checks.git" 26 }, 27 "keywords": [ 28 "npm,", 29 "install" 30 ], 31 "license": "BSD-2-Clause", 32 "files": [ 33 "bin/", 34 "lib/" 35 ], 36 "engines": { 37 "node": "^14.17.0 || ^16.13.0 || >=18.0.0" 38 }, 39 "author": "GitHub Inc.", 40 "templateOSS": { 41 "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", 42 "version": "4.19.0", 43 "publish": "true" 44 }, 45 "tap": { 46 "nyc-arg": [ 47 "--exclude", 48 "tap-snapshots/**" 49 ] 50 } 51} 52