package.json 1003 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
{
  "name": "webpack-log",
  "version": "2.0.0",
  "description": "A common logger for the webpack ecosystem",
  "main": "src/index.js",
  "files": [
    "src"
  ],
  "engines": {
    "node": ">= 6"
  },
  "scripts": {
    "lint": "eslint src test",
    "test": "nyc --reporter lcovonly mocha --full-trace --check-leaks",
    "release": "standard-version"
  },
  "dependencies": {
    "ansi-colors": "^3.0.0",
    "uuid": "^3.3.2"
  },
  "devDependencies": {
    "assert": "^1.4.1",
    "eslint": "^5.4.0",
    "eslint-config-webpack": "^1.2.5",
    "eslint-plugin-import": "^2.14.0",
    "mocha": "^5.2.0",
    "nyc": "^12.0.2",
    "sinon": "^6.1.5",
    "standard-version": "^4.4.0",
    "strip-ansi": "^4.0.0"
  },
  "author": "Andrew Powell <andrew@shellscape.org>",
  "issues": "https://github.com/webpack-contrib/webpack-log/issues",
  "homepage": "https://github.com/webpack-contrib/webpack-log#readme",
  "repository": "https://github.com/webpack-contrib/webpack-log.git",
  "license": "MIT"
}