pragmaticivan/wizard

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "express-wizard",
  "version": "1.2.0",
  "description": "Autoload your express dependencies using the power of glob",
  "main": "dist/all.js",
  "jsnext:main": "src/wizard.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/pragmaticivan/wizard.git"
  },
  "bugs": {
    "url": "https://github.com/pragmaticivan/wizard/issues"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "node ./node_modules/.bin/gulp build",
    "lint": "node ./node_modules/.bin/gulp lint",
    "release": "node NODE_ENV=production ./node_modules/.bin/gulp build",
    "test": "node ./node_modules/.bin/gulp coverage",
    "test:watch": "node ./node_modules/.bin/gulp test:watch",
    "test:coverage:travis": "node ./node_modules/.bin/gulp test:coverage:travis",
    "generate-changelog": "node ./node_modules/.bin/auto-changelog",
    "preversion": "npm test",
    "postversion": "git push && git push --tags && rm -rf dist",
    "version": "npm run generate-changelog && git add CHANGELOG.md",
    "prepublish": "npm run build"
  },
  "author": "Ivan Santos",
  "license": "MIT",
  "devDependencies": {
    "auto-changelog": "^0.3.1",
    "babel-core": "^6.22.1",
    "babel-plugin-syntax-async-functions": "^6.13.0",
    "babel-plugin-transform-async-to-generator": "^6.22.0",
    "babel-plugin-transform-runtime": "^6.22.0",
    "babel-preset-es2015": "^6.22.0",
    "chai": "^3.5.0",
    "del": "^2.2.2",
    "eslint": "^3.13.1",
    "eslint-config-google": "^0.7.1",
    "eslint-loader": "^1.6.1",
    "gulp": "^3.9.1",
    "gulp-babel": "^6.1.2",
    "gulp-codecov": "^2.0.2",
    "gulp-concat": "^2.6.1",
    "gulp-eslint": "^3.0.1",
    "gulp-istanbul": "^1.1.1",
    "gulp-load-plugins": "^1.4.0",
    "gulp-mocha": "^3.0.1",
    "gulp-sourcemaps": "^2.4.0",
    "isparta": "^4.0.0",
    "mocha": "^3.2.0",
    "run-sequence": "^1.2.2",
    "sinon": "^1.17.7",
    "sinon-chai": "^2.8.0"
  },
  "dependencies": {
    "multi-glob": "^1.0.1"
  }
}