{
  "name": "@smake/eigen",
  "version": "1.1.1",
  "description": "Typescript Module Template",
  "license": "MIT",
  "repository": "https://github.com/kuyoonjo/smake-lib-eigen.git",
  "author": {
    "name": "Yu Chen",
    "email": "yu@chen.news",
    "url": "https://yu.chen.news"
  },
  "keywords": [
    "typescript",
    "generator",
    "node",
    "module",
    "javascript",
    "js"
  ],
  "files": [
    "lib",
    "eigen/Eigen"
  ],
  "main": "lib/index",
  "types": "lib/index",
  "scripts": {
    "clean": "rimraf lib && rimraf coverage",
    "format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
    "lint": "tslint --force --format verbose \"src/**/*.ts\"",
    "prepublishOnly": "mv eigen/.gitignore eigen/.gitignore.bak",
    "postpublish": "mv eigen/.gitignore.bak eigen/.gitignore",
    "prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
    "build": "tsc --pretty",
    "test": "jest",
    "coverage": "jest --coverage",
    "watch": "npm run build -- --watch",
    "watch:test": "jest --watch"
  },
  "devDependencies": {
    "@smake/llvm": "^1.2.0",
    "@types/node": "^16.4.7",
    "prettier": "^2.3.2",
    "rimraf": "^3.0.2",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.3.5"
  },
  "engines": {
    "node": ">=10.0.0"
  },
  "jest": {
    "preset": "ts-jest"
  }
}
