{
  "name": "clean-assert",
  "version": "3.0.0",
  "description": "A simple, intuitive TDD assertion library",
  "scripts": {
    "lint": "eslint . --cache",
    "test": "eslint . && npm run test:node",
    "test:all": "eslint . && npm run test:node && npm run test:chrome && npm run test:firefox && npm run test:phantomjs",
    "test:node": "mocha --colors --reporter dot",
    "test:chrome": "karma start --colors --single-run --browsers Chrome",
    "test:firefox": "karma start --colors --single-run --browsers Firefox",
    "test:phantomjs:bundle": "browserify scripts/test-main.js --outfile scripts/test-bundle.js",
    "test:phantomjs:run": "node_modules/.bin/phantomjs node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js scripts/test.html dot '{\"useColors\": true}'",
    "test:phantomjs": "npm run test:phantomjs:bundle && npm run test:phantomjs:run && node scripts/test-cleanup.js",
    "bundle": "browserify ./browser-export.js --outfile global.js",
    "preversion": "npm run bundle && git add global.js"
  },
  "files": [
    "index.d.ts",
    "index.js",
    "global.js",
    "lib",
    "docs"
  ],
  "author": "Isiah Meadows",
  "license": "ISC",
  "devDependencies": {
    "benchmark": "^2.1.4",
    "browserify": "^16.2.2",
    "eslint": "^5.2.0",
    "eslint-config-isiahmeadows": "^0.1.8",
    "karma": "^2.0.5",
    "karma-browserify": "^5.3.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-firefox-launcher": "^1.0.0",
    "karma-mocha": "^1.1.1",
    "mocha": "^4.0.1",
    "mocha-phantomjs-core": "^2.1.2",
    "phantomjs-prebuilt": "^2.1.16",
    "watchify": "^3.11.0"
  },
  "dependencies": {
    "util-inspect": "^0.1.8"
  },
  "browser": {
    "./lib/inspect.js": "./lib/browser-inspect.js"
  },
  "repository": "isiahmeadows/clean-assert",
  "bugs": "https://github.com/isiahmeadows/clean-assert/issues",
  "homepage": "https://github.com/isiahmeadows/clean-assert#readme"
}
