twada/espower

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "espower",
  "description": "Power Assert feature instrumentor based on the ECMAScript AST",
  "version": "3.0.0-beta.1-pre",
  "author": {
    "name": "Takuto Wada",
    "email": "takuto.wada@gmail.com",
    "url": "https://github.com/twada"
  },
  "bugs": {
    "url": "https://github.com/power-assert-js/espower/issues"
  },
  "contributors": [
    {
      "name": "James Talmage",
      "url": "https://github.com/jamestalmage"
    }
  ],
  "dependencies": {
    "call-matcher": "^2.0.0",
    "call-signature": "^0.0.2",
    "escodegen": "^2.0.0",
    "escope": "^3.3.0",
    "espower-location-detector": "^2.0.0",
    "espurify": "^2.0.0",
    "estraverse": "^5.0.0"
  },
  "devDependencies": {
    "acorn": "^8.0.0",
    "esprima": "^4.0.0",
    "esutils": "^2.0.0",
    "mocha": "^8.0.0",
    "nyc": "^15.0.0",
    "rimraf": "^3.0.0",
    "semistandard": "^14.0.0",
    "snazzy": "^8.0.0",
    "source-map": "^0.5.0"
  },
  "directories": {
    "lib": "./lib"
  },
  "files": [
    "CHANGELOG.md",
    "MIT-LICENSE.txt",
    "README.md",
    "index.js",
    "lib",
    "package.json"
  ],
  "homepage": "https://github.com/power-assert-js/espower",
  "keywords": [
    "power-assert",
    "assert",
    "assertion",
    "test",
    "testing",
    "ecmascript",
    "estree",
    "ast"
  ],
  "license": "MIT",
  "main": "./index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/power-assert-js/espower.git"
  },
  "scripts": {
    "preversion": "npm test",
    "clean": "rimraf ./coverage",
    "lint": "semistandard --verbose index.js 'lib/**/*.js' 'templates/*.js' 'test/*.js' | snazzy",
    "fmt": "semistandard --fix index.js 'lib/**/*.js' 'templates/*.js' 'test/*.js'",
    "gen": "node gen.js",
    "test": "npm run lint && npm run gen && npm run test:unit",
    "test:unit": "mocha --reporter dot",
    "test:cov": "nyc --reporter=lcovonly npm run test:unit",
    "coveralls": "npm run test:cov && cat ./coverage/lcov.info | coveralls"
  },
  "semistandard": {
    "ignore": [
      "**/*.jsx"
    ],
    "globals": [
      "describe",
      "context",
      "beforeEach",
      "it"
    ]
  }
}