-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
34 lines (34 loc) · 1006 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
{
"name": "pbkdf2-sha256",
"version": "1.1.1",
"description": "pbkdf2-sha256 is a PBDKF2 implementation using HMAC SHA256",
"main": "./lib/pbkdf2.js",
"author": "JP Richardson <[email protected]>",
"license": "BSD",
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.2.11",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.1",
"mochify": "^2.1.0"
},
"keywords": [
"pbkdf2",
"sha256",
"hmac",
"crypto",
"cryptography",
"scrypt"
],
"repository": {
"url": "[email protected]:cryptocoinjs/pbkdf2-sha256.git",
"type": "git"
},
"scripts": {
"browser-test": "./node_modules/.bin/mochify --wd -R spec -t 30000",
"test": "./node_modules/.bin/mocha --ui bdd",
"unit": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info"
}
}