UNPKG

807 BJSONView Raw
1{
2 "name": "os-name",
3 "version": "1.0.0",
4 "description": "Get the name of the current operating system. Example: OS X Mavericks",
5 "license": "MIT",
6 "repository": "sindresorhus/os-name",
7 "author": {
8 "name": "Sindre Sorhus",
9 "email": "sindresorhus@gmail.com",
10 "url": "http://sindresorhus.com"
11 },
12 "bin": {
13 "os-name": "cli.js"
14 },
15 "engines": {
16 "node": ">=0.10.0"
17 },
18 "scripts": {
19 "test": "mocha"
20 },
21 "files": [
22 "index.js",
23 "cli.js"
24 ],
25 "keywords": [
26 "cli",
27 "bin",
28 "os",
29 "operating",
30 "system",
31 "platform",
32 "name",
33 "title",
34 "release",
35 "version",
36 "osx",
37 "windows",
38 "linux"
39 ],
40 "dependencies": {
41 "minimist": "^1.1.0",
42 "osx-release": "^1.0.0"
43 },
44 "devDependencies": {
45 "mocha": "*"
46 }
47}