-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 754 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 754 Bytes
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
{
"name": "jinxi",
"version": "1.0.0",
"description": "jinxi is a wrapper for inxi to output parsable json",
"main": "jinxi.js",
"scripts": {
"build": "esbuild ./src/jinxi.js --bundle --platform=node --format=esm --outfile=build/jinxi && chmod a+x ./build/jinxi",
"eslint": "eslint",
"test": "node --test ./src/*test.js",
"system-install": "cp ./build/jinxi /usr/local/bin/jinxi",
"system-uninstall": "rm /usr/local/bin/jinxi",
"all": "npm-run-all test eslint build"
},
"keywords": [],
"author": "Florian Torkler",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.24.0",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {}
}