-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 869 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
{
"name": "base64-min",
"version": "2.0.0",
"description": "Minimalist package, focused in best performance to encode and decode base64.",
"main": "base64.js",
"dependencies": {},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.0",
"mocha": "^2.2.4"
},
"scripts": {
"test": "istanbul test mocha -- test/ -R spec",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- test/ -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/victorfern91/base64.git"
},
"keywords": [
"base64",
"minimal",
"files",
"encryption",
"fast",
"crypto",
"xor",
"cipher",
"MIME"
],
"author": "Victor Fernandes <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/victorfern91/base64"
}