{
  "name": "common-js",
  "version": "0.3.8",
  "description": "module.exports and module.import for browsers too",
  "main": "common.js",
  "scripts": {
    "test": "node test.js",
    "build": "npm run minify; npm run nonce; npm run size;",
    "size": "cat common.js | wc -c;cat common.min.js | wc -c;gzip -c common.min.js | wc -c",
    "minify": "uglifyjs common.js --support-ie8 --comments=/^!/ --compress --mangle -o common.min.js",
    "nonce": "cat common.js | openssl dgst -sha256 -binary | base64 > nonce.txt;cat common.min.js | openssl dgst -sha256 -binary | base64 > nonce.min.txt"
  },
  "keywords": [
    "require",
    "module",
    "exports",
    "import",
    "async",
    "browser"
  ],
  "author": "Andrea Giammarchi",
  "license": "MIT",
  "devDependencies": {
    "uglify-js": "^2.7.5"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/WebReflection/common-js.git"
  },
  "bugs": {
    "url": "https://github.com/WebReflection/common-js/issues"
  },
  "homepage": "https://github.com/WebReflection/common-js#readme"
}
