-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "thinbus-srp",
"version": "1.8.0",
"description": "Secure Remote Password SRP SRP6a implementation.",
"main": "index.js",
"scripts": {
"test": "node test/testrunner.js",
"build": "browserify --standalone thinbus -r ./thinbus-original-client.js -o browser.js",
"build-alt": "browserify --full-paths --standalone thinbus -r ./client.js:SRP6JavascriptClientSessionSHA256 -o alt-browser.js",
"build-random-strings": "browserify --full-paths -r random-strings > random-strings-out.js",
"build-nocrypto": "browserify -r random-strings > random-strings-out.js; browserify -r crypto-js/sha256 > sha256-out.js; browserify -r jsbn > jsbn-out.js; browserify --full-paths --no-bundle-external -x jsbn -x crypto-js/sha256 -r ./client.js -o browser-out.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simbo1905/thinbus-srp-npm.git"
},
"keywords": [
"SRP",
"SRP6a",
"zero-knowledge",
"authentication",
"password",
"salt"
],
"author": "Simon Massey <[email protected]> (https://bitbucket.org/simon_massey/)",
"license": "Apache-2.0",
"homepage": "https://github.com/simbo1905/thinbus-srp-npm",
"dependencies": {
"crypto-js": "^3.1.9-1",
"jsbn": "^1.1.0",
"random-strings": "0.0.1"
},
"devDependencies": {
"browserify": "^14.5.0",
"jasmine-node": "^1.14.5",
"jsonfn": "^0.31.0",
"unit.js": "^2.0.0"
}
}