-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 860 Bytes
/
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
40
41
42
{
"name": "js-scrypt",
"version": "0.2.0",
"description": "JS Implementation of SCrypt for use with NodeJS",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/tracker1/node-js-scrypt.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"proxy":null,
"https-proxy":null
},
"keywords": [
"scrypt",
"password",
"auth",
"authentication",
"encryption",
"crypto"
],
"author": "Michael J. Ryan <[email protected]>",
"license": "BSD",
"bugs": {
"url": "https://github.com/tracker1/node-js-scrypt/issues"
},
"devDependencies": {
"mocha": "~1.12.1",
"chai": "~1.7.2",
"coffee-script": "~1.6.3"
},
"dependencies": {
"generic-pool": "~2.0.4"
}
}