-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1005 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "get-osx-version",
"version": "3.0.0",
"description": "tiny program to get the macOS version of the current system",
"main": "index.js",
"scripts": {
"test": "ava && tsd",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fscherwi/get-osx-version.git"
},
"keywords": [
"osx",
"mac",
"version",
"mac os",
"macOS"
],
"author": "fscherwi",
"license": "MIT",
"bugs": {
"url": "https://github.com/fscherwi/get-osx-version/issues"
},
"homepage": "https://github.com/fscherwi/get-osx-version#readme",
"devDependencies": {
"ava": "^5.2.0",
"eslint-plugin-jsdoc": "^43.1.1",
"tsd": "^0.28.1",
"xo": "^0.52.4"
},
"files": [
"bin.js",
"index.js",
"index.d.ts"
],
"xo": {
"rules": {
"unicorn/no-process-exit": 0,
"@typescript-eslint/no-unsafe-call": 0,
"unicorn/prefer-module": 0
},
"extends": [
"plugin:jsdoc/recommended"
]
}
}