{
  "name": "node-shipping-fedex",
  "version": "1.0.0",
  "description": "FedEx API for Node.JS",
  "main": "./dist/index.js",
  "scripts": {
    "build": "npm run clean && webpack --progress --colors",
    "clean": "rm -rf dist/",
    "coverage": "nyc npm t",
    "jshint": "jshint ./",
    "linters": "npm run jshint && npm run tslint",
    "start": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts",
    "test": "mocha -r ts-node/register test/tracking.ts --timeout 5000",
    "tslint": "tslint ./lib/"
  },
  "license": "ISC",
  "author": "Vincent Tellier <vincent@great-seal.co>",
  "repository": {
    "type": "git",
    "url": "https://github.com/vtllr/node-shipping-fedex"
  },
  "dependencies": {
    "lodash": "4.17.4",
    "soap": "0.9.4",
    "xml2js": "0.4.12"
  },
  "devDependencies": {
    "@types/chai": "4.0.3",
    "@types/mocha": "2.2.41",
    "@types/node": "8.0.22",
    "awesome-typescript-loader": "3.2.3",
    "babel-plugin-add-module-exports": "0.2.1",
    "body-parser": "1.16.1",
    "chai": "4.1.1",
    "copy-webpack-plugin": "4.0.1",
    "dotenv": "4.0.0",
    "express": "4.15.4",
    "istanbul": "0.4.5",
    "jshint": "2.9.5",
    "lodash": "4.17.4",
    "mocha": "3.5.0",
    "nyc": "11.1.0",
    "ts-node": "3.3.0",
    "tslint": "5.6.0",
    "typescript": "2.4.2",
    "webpack": "3.5.4",
    "winston": "2.3.1"
  },
  "nyc": {
    "include": [
      "lib/*.ts"
    ],
    "exclude": [
      "node_modules"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "html"
    ],
    "all": true
  }
}
