Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Apr 16, 2016
1 parent c295535 commit f3ab774
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.nyc_output
coverage
node_modules

npm-debug.log
31 changes: 19 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,36 @@
"name": "cipher-base",
"version": "1.0.2",
"description": "abstract base class for crypto-streams",
"main": "index.js",
"scripts": {
"test": "node test.js | tspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-browserify/cipher-base.git"
},
"keywords": [
"cipher",
"stream"
],
"author": "Calvin Metcalf <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/crypto-browserify/cipher-base#readme",
"bugs": {
"url": "https://github.com/crypto-browserify/cipher-base/issues"
},
"homepage": "https://github.com/crypto-browserify/cipher-base#readme",
"license": "MIT",
"author": "Calvin Metcalf <[email protected]>",
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/crypto-browserify/cipher-base.git"
},
"scripts": {
"coverage": "nyc node test/*.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "node test/*.js"
},
"dependencies": {
"inherits": "^2.0.1"
},
"devDependencies": {
"tap-spec": "^4.1.0",
"nyc": "^6.1.1",
"standard": "^6.0.8",
"tape": "^4.2.0"
}
}

0 comments on commit f3ab774

Please sign in to comment.