is-freebsd
Version:
A tool to check if the operating system is FreeBSD or not
48 lines (47 loc) • 1.13 kB
JSON
{
"name": "is-freebsd",
"version": "1.0.3",
"description": "A tool to check if the operating system is FreeBSD or not",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "jest",
"compile": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint ./src/*.ts",
"lint:fix": "eslint ./src/*.ts --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/priyanshurav/is-freebsd.git"
},
"keywords": [
"freebsd",
"bsd",
"os",
"is-freebsd"
],
"author": "Priyanshu Rav",
"license": "MIT",
"bugs": {
"url": "https://github.com/priyanshurav/is-freebsd/issues"
},
"homepage": "https://github.com/priyanshurav/is-freebsd#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/node": "^14.14.22"
}
}