package.json
1.63 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"_args": [
[
"base64-js@1.3.0",
"/Library/WebServer/Documents/mywork/dyitoc"
]
],
"_development": true,
"_from": "base64-js@1.3.0",
"_id": "base64-js@1.3.0",
"_inBundle": false,
"_integrity": "sha1-yrHmEY8FEJXli1KBrqjBzSK/wOM=",
"_location": "/base64-js",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "base64-js@1.3.0",
"name": "base64-js",
"escapedName": "base64-js",
"rawSpec": "1.3.0",
"saveSpec": null,
"fetchSpec": "1.3.0"
},
"_requiredBy": [
"/buffer"
],
"_resolved": "http://registry.npm.taobao.org/base64-js/download/base64-js-1.3.0.tgz",
"_spec": "1.3.0",
"_where": "/Library/WebServer/Documents/mywork/dyitoc",
"author": {
"name": "T. Jameson Little",
"email": "t.jameson.little@gmail.com"
},
"bugs": {
"url": "https://github.com/beatgammit/base64-js/issues"
},
"description": "Base64 encoding/decoding in pure JS",
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^14.0.0",
"standard": "*",
"tape": "4.x",
"uglify-js": "^2.8.29"
},
"files": [
"test",
"index.js",
"base64js.min.js"
],
"homepage": "https://github.com/beatgammit/base64-js",
"keywords": [
"base64"
],
"license": "MIT",
"main": "index.js",
"name": "base64-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"
},
"version": "1.3.0"
}