aureooms/texshake

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "texshake",
  "description": "Shake your LaTeX syntax tree!",
  "version": "7.0.0",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "files": [
      "./test/src/**/*"
    ],
    "concurrency": 8,
    "timeout": "1m",
    "require": [
      "regenerator-runtime/runtime",
      "@babel/register"
    ]
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ],
    "plugins": [
      "@babel/plugin-proposal-async-generator-functions"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bin": "lib/cli.js",
  "bugs": {
    "url": "https://github.com/aureooms/texshake/issues"
  },
  "dependencies": {
    "@aureooms/js-grammar": "^8.0.0",
    "@aureooms/js-itertools": "^4.1.0",
    "@aureooms/js-tape": "^7.0.0",
    "regenerator-runtime": "^0.13.7"
  },
  "devDependencies": {
    "@babel/cli": "7.13.10",
    "@babel/core": "7.13.10",
    "@babel/plugin-proposal-async-generator-functions": "7.13.8",
    "@babel/preset-env": "7.13.12",
    "@babel/register": "7.13.8",
    "ava": "3.15.0",
    "coveralls": "3.1.0",
    "np": "6.5.0",
    "nyc": "15.1.0"
  },
  "files": [
    "lib"
  ],
  "homepage": "https://github.com/aureooms/texshake#readme",
  "keywords": [
    "abstract",
    "ast",
    "latex",
    "parser",
    "syntax",
    "tree"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/aureooms/texshake"
  },
  "scripts": {
    "build": "rm -rf lib && babel src -d lib",
    "cover": "nyc --reporter=lcov npm test",
    "prepare": "npm run build",
    "release": "np",
    "test": "ava"
  }
}