diff --git a/package.json b/package.json index c59c541..a94b9ad 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,14 @@ { "name": "rfc4648", "version": "0.9.1", - "author": "William Swanson", "description": "Encoding and decoding for base64, base32, base16, and friends", "license": "MIT", - "main": "lib/index.cjs.js", - "module": "lib/index.js", - "devDependencies": { - "mocha": "^3.2.0", - "nyc": "^10.2.0", - "rollup": "^0.42.0", - "rollup-plugin-buble": "^0.15.0", - "rollup-plugin-filesize": "^1.3.2", - "rollup-plugin-uglify": "^2.0.1", - "standard": "^10.0.1" - }, + "author": "William Swanson", "files": [ "lib/*" ], + "main": "lib/index.cjs.js", + "module": "lib/index.js", "repository": { "type": "git", "url": "git@github.com:swansontec/rfc4648.js.git" @@ -27,5 +18,14 @@ "lint": "standard '*.js' 'src/**/*.js' 'test/**/*.js'", "prepublish": "npm run lint && npm run build", "test": "npm run lint && rollup -c && nyc mocha" + }, + "devDependencies": { + "mocha": "^3.2.0", + "nyc": "^10.2.0", + "rollup": "^0.42.0", + "rollup-plugin-buble": "^0.15.0", + "rollup-plugin-filesize": "^1.3.2", + "rollup-plugin-uglify": "^2.0.1", + "standard": "^10.0.1" } }