zackstrap 1.2.1

A CLI tool to bootstrap project configuration files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "name": "myproject",
  "version": "1.0.0",
  "description": "A Node.js project",
  "main": "index.js",
  "scripts": {
    "test": "node test.js",
    "lint": "eslint .",
    "format": "prettier --write ."
  },
  "devDependencies": {
    "eslint": "^8.57.0",
    "prettier": "^3.2.5"

  }
}