12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "os-name",
- "version": "4.0.1",
- "description": "Get the name of the current operating system. Example: macOS Sierra",
- "license": "MIT",
- "repository": "sindresorhus/os-name",
- "funding": "https://github.com/sponsors/sindresorhus",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "https://sindresorhus.com"
- },
- "engines": {
- "node": ">=10"
- },
- "scripts": {
- "test": "xo && ava && tsd"
- },
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "keywords": [
- "os",
- "operating",
- "system",
- "platform",
- "name",
- "title",
- "release",
- "version",
- "macos",
- "windows",
- "linux"
- ],
- "dependencies": {
- "macos-release": "^2.5.0",
- "windows-release": "^4.0.0"
- },
- "devDependencies": {
- "@types/node": "^14.6.2",
- "ava": "^2.4.0",
- "tsd": "^0.13.1",
- "xo": "^0.33.0"
- }
- }
|