Skip to content

Commit 9f906f8

Browse files
committed
update package.json
1 parent d0a4613 commit 9f906f8

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2015 Calvin Metcalf & contributors
3+
Copyright (c) 2014-2016 Calvin Metcalf & contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,30 @@
22
"name": "browserify-rsa",
33
"version": "4.0.1",
44
"description": "RSA for browserify",
5+
"bugs": {
6+
"url": "https://github.com/crypto-browserify/browserify-rsa/issues"
7+
},
8+
"license": "MIT",
9+
"files": [
10+
"index.js"
11+
],
512
"main": "index.js",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com:crypto-browserify/browserify-rsa.git"
16+
},
617
"scripts": {
7-
"test": "node test.js | tspec"
18+
"lint": "standard",
19+
"test": "npm run lint && npm run unit",
20+
"unit": "tape test/*.js"
821
},
9-
"author": "",
10-
"license": "MIT",
1122
"dependencies": {
1223
"bn.js": "^4.1.0",
1324
"randombytes": "^2.0.1"
1425
},
15-
"repository": {
16-
"type": "git",
17-
"url": "[email protected]:crypto-browserify/browserify-rsa.git"
18-
},
1926
"devDependencies": {
2027
"parse-asn1": "^5.0.0",
21-
"tap-spec": "^2.1.2",
22-
"tape": "^3.0.3"
28+
"standard": "^6.0.8",
29+
"tape": "^4.5.1"
2330
}
2431
}

0 commit comments

Comments
 (0)