19 lines
556 B
JSON
19 lines
556 B
JSON
{
|
|
"name": "nextnet-lom",
|
|
"version": "0.1.0",
|
|
"description": "Lights Out Management, NextNet style",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "cd out && node --enable-source-maps index.js",
|
|
"dev": "nodemon --watch src --ext ts,js,mjs,json --exec \"tsc && cd out && node --enable-source-maps index.js\""
|
|
},
|
|
"keywords": [],
|
|
"author": "greysoh",
|
|
"license": "BSD-3-Clause",
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.3",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|