Skip to content

Commit

Permalink
update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Mar 22, 2016
1 parent 7e4d3cf commit 13f7b67
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.nyc_output
node_modules

npm-debug.log
33 changes: 20 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,25 @@
"name": "browserify-sign",
"version": "4.0.0",
"description": "adds node crypto signing for browsers",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"unit": "node test/index.js | tspec",
"standard": "standard",
"test": "npm run standard && npm run unit"
"bugs": {
"url": "https://github.com/crypto-browserify/browserify-sign/issues"
},
"license": "ISC",
"files": [
"browser",
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/crypto-browserify/browserify-sign.git"
"url": "https://github.com/crypto-browserify/browserify-sign.git"
},
"scripts": {
"coverage": "nyc npm run unit",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bn.js": "^4.1.1",
"browserify-rsa": "^4.0.0",
Expand All @@ -25,8 +31,9 @@
"parse-asn1": "^5.0.0"
},
"devDependencies": {
"tap-spec": "^1.0.1",
"tape": "^3.0.3",
"standard": "^5.0.0"
}
"nyc": "^6.1.1",
"standard": "^6.0.8",
"tape": "^4.5.1"
},
"browser": "browser/index.js"
}

0 comments on commit 13f7b67

Please sign in to comment.