microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
scripts/tests/Fixtures/Npm/metadata-only-package.json
35lines · modecode
| 1 | { |
| 2 | "name": "test-package", |
| 3 | "version": "1.0.0", |
| 4 | "description": "Test package with only metadata fields", |
| 5 | "author": "Test Author", |
| 6 | "license": "MIT", |
| 7 | "repository": { |
| 8 | "type": "git", |
| 9 | "url": "https://github.com/test/test-package.git" |
| 10 | }, |
| 11 | "bugs": { |
| 12 | "url": "https://github.com/test/test-package/issues" |
| 13 | }, |
| 14 | "homepage": "https://github.com/test/test-package#readme", |
| 15 | "keywords": [ |
| 16 | "test", |
| 17 | "fixture" |
| 18 | ], |
| 19 | "scripts": { |
| 20 | "build": "echo 'build'", |
| 21 | "test": "echo 'test'" |
| 22 | }, |
| 23 | "main": "index.js", |
| 24 | "engines": { |
| 25 | "node": ">=18.0.0" |
| 26 | }, |
| 27 | "contributes": { |
| 28 | "commands": [ |
| 29 | { |
| 30 | "command": "test.command", |
| 31 | "title": "Test Command" |
| 32 | } |
| 33 | ] |
| 34 | } |
| 35 | } |
| 36 | |