-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.07 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
{
"name": "js-rijndael",
"version": "1.0.0",
"description": "Javascript implementation of the rijndael block cipher. Key lengths of 128, 192 and 256 bits, and block lengths of 128, 192, and 256 bit in any combination are supported.",
"main": "mcrypt.js",
"scripts": {
"coverall": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly *.test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "./node_modules/.bin/mocha *.test.js"
},
"keywords": [
"rijndael",
"aes",
"crypto",
"javascript",
"mcrypt"
],
"author": "Kevin Raynel (https://github.com/kraynel)",
"license": "GPL-2.0",
"devDependencies": {
"base64-js": "^1.1.2",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kraynel/js-rijndael.git"
},
"bugs": "https://github.com/kraynel/js-rijndael/issues"
}