KyperTech/matter

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "kyper-matter",
  "version": "0.2.10",
  "description": "Library to provide simple application functionality like authentication and local/session/token storage for Tesselate applications.",
  "main": "lib/index.js",
  "jsnext:main": "src/index.js",
  "files": [
    "src",
    "dist",
    "lib"
  ],
  "scripts": {
    "clean": "rimraf lib dist coverage",
    "test": "mocha --compilers js:babel-core/register --reporter spec ./test/*.js ./test/**/*.js",
    "test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test --recursive",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack src/index.js dist/matter.js --config webpack.config.development.js",
    "build:umd:min": "webpack -p src/index.js dist/matter.min.js --config webpack.config.production.js",
    "build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
    "watch:umd": "npm run build:umd -- --stats --progress --colors --watch",
    "watch:lib": "npm run build:lib -- --stats --progress --colors --watch",
    "watch": "npm run watch:umd",
    "dev": "browser-sync start --server --port 5000",
    "prepublish": "npm run clean && npm run build",
    "upload": "node ./bin/upload",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "npm run docs:prepare && gitbook build -g kypertech/matter",
    "docs:watch": "npm run docs:prepare && gitbook serve",
    "docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:kypertech/matter gh-pages --force"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/KyperTech/matter.git"
  },
  "keywords": [
    "matter",
    "grout",
    "tessellate",
    "kyper",
    "authentication",
    "user management",
    "application management",
    "es6",
    "babel"
  ],
  "author": "Kyper Digital Inc. <kyper.dev@gmail.com>",
  "contributors": [
    {
      "name": "Scott Prue",
      "email": "<sprue.dev@gmail.com>"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/KyperTech/matter/issues"
  },
  "homepage": "https://github.com/KyperTech/matter",
  "dependencies": {
    "jwt-decode": "^1.5.1",
    "lodash": "^4.5.1",
    "superagent": "^1.7.2"
  },
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-cli": "^6.5.1",
    "babel-core": "^6.5.2",
    "babel-loader": "^6.2.2",
    "babel-plugin-add-module-exports": "^0.1.2",
    "babel-plugin-lodash": "^2.0.1",
    "babel-preset-es2015": "^6.5.0",
    "chai": "^3.5.0",
    "chai-as-promised": "^5.2.0",
    "es6-promise": "^3.0.2",
    "gitbook-cli": "^1.0.1",
    "isparta": "^4.0.0",
    "jsdom": "^8.0.4",
    "legacy-loader": "0.0.2",
    "mocha": "^2.4.5",
    "rimraf": "^2.5.2",
    "s3-cli": "^0.13.0",
    "sinon": "^1.17.3",
    "sinon-chai": "^2.8.0",
    "webpack": "^1.12.14"
  }
}