{
  "name": "apes",
  "label": "Apes",
  "version": "0.7.10",
  "description": "A tiny application and HTTP API framework for Express.js.",
  "main": "./index.js",
  "files": [
    "lib",
    "README.md",
    "CHANGELOG.md"
  ],
  "typings": "lib/main",
  "scripts": {
    "test": "./node_modules/.bin/mocha",
    "ci-test": "./node_modules/.bin/mocha -R dot",
    "lint": "./node_modules/.bin/eslint lib test",
    "coverage": "./node_modules/.bin/nyc npm run ci-test",
    "sanity": "npm run lint && npm run coverage && npm run docs",
    "cleanup": "rm -rf .nyc_output coverage log",
    "travis-ci": "./node_modules/.bin/nyc --reporter=text-lcov npm run ci-test | ./node_modules/coveralls/bin/coveralls.js",
    "docs": "jsdoc -c .jsdoc.json",
    "postpublish": "git push origin && git push origin -f --tags"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ShogunPanda/apes"
  },
  "keywords": [],
  "author": "Shogun <shogun@cowtech.it>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ShogunPanda/apes/issues"
  },
  "homepage": "https://github.com/ShogunPanda/apes",
  "dependencies": {
    "bluebird": "~3.4.6",
    "body-parser": "~1.15.2",
    "compression": "~1.6.2",
    "express": "~4.14.0",
    "fs-extra": "~1.0.0",
    "moment": "~2.17.1",
    "on-headers": "~1.0.1",
    "serve-static": "~1.11.1",
    "spdy": "~3.4.4",
    "sprintf-js": "~1.0.3",
    "winston": "~2.3.0"
  },
  "devDependencies": {
    "chai": "~3.5.0",
    "chai-http": "~3.0.0",
    "chai-moment": "~0.1.0",
    "coveralls": "~2.11.14",
    "eslint": "~3.12.1",
    "jaguarjs-jsdoc": "^1.0.1",
    "jsdoc": "^3.4.3",
    "jsdoc-strip-async-await": "^0.1.0",
    "mocha": "~3.2.0",
    "nyc": "~10.0.0",
    "sinon": "~1.17.4",
    "sinon-as-promised": "~4.0.2",
    "timekeeper": "~1.0.0"
  },
  "nyc": {
    "reporter": [
      "html",
      "text-summary"
    ]
  },
  "apes-tests-main": {
    "env1": {
      "port": 123,
      "useragent": "AGENT1"
    },
    "env2": {
      "port": 465,
      "useragent": "AGENT2"
    }
  },
  "apes-tests-empty": {},
  "apes-tests-string": "",
  "apes-tests-http-server": {
    "server1": {
      "httpServer": {
        "port": 1,
        "ssl": {
          "enabled": true,
          "key": "test/fixtures/ssl/server.key",
          "certificate": "test/fixtures/ssl/server.crt"
        }
      },
      "other": {
        "port": 1234
      },
      "other2": "CONFIG",
      "none": "NONE"
    },
    "server2": {
      "httpServer": "CONFIG"
    },
    "server3": {}
  }
}
