-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 KB
/
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
{
"name": "linux-release-info",
"productName": "Linux Release Info",
"version": "3.0.0",
"description": "Get Linux release info (distribution name, version, arch, release, etc.) from 'os-release' file and from native os module. On Windows and Darwin it only returns common node os module info (platform, hostname, release and arch)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node test.js",
"build": "tsc",
"watch": "tsc -w",
"publish": "npm publish",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelcarreira/linux-release-info.git"
},
"keywords": [
"linux",
"release",
"info",
"os",
"distribution",
"arch",
"debian"
],
"author": "Samuel Carreira <[email protected]> (http://www.samuelcarreira.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelcarreira/linux-release-info/issues"
},
"homepage": "https://github.com/samuelcarreira/linux-release-info#readme",
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"typescript": "^3.9.7",
"xo": "^0.32.1"
},
"files": [
"dist/**/*"
]
}