forked from beatgammit/base64-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 886 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
{
"name": "base64-js",
"version": "1.2.1",
"description": "Base64 encoding/decoding in pure JS",
"keywords": [
"base64"
],
"homepage": "https://github.com/beatgammit/base64-js",
"bugs": {
"url": "https://github.com/beatgammit/base64-js/issues"
},
"license": "MIT",
"author": "T. Jameson Little <[email protected]>",
"files": [
"test",
"index.js",
"base64js.min.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/beatgammit/base64-js.git"
},
"scripts": {
"build": "browserify -s base64js -r ./ | uglifyjs -m > base64js.min.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^14.0.0",
"standard": "*",
"tape": "4.x",
"uglify-js": "^2.8.29"
}
}