-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 746 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 746 Bytes
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
{
"name": "base32",
"description": "Base32 encoding and decoding",
"version": "0.0.7",
"author": "Isaac Wolkerstorfer <agnoster@gmail.com> (http://agnoster.net/)",
"homepage": "https://github.com/agnoster/base32-js",
"repository": {
"type": "git",
"url": "git://github.com/agnoster/base32-js.git"
},
"main": "./lib/base32",
"bin": "./bin/base32.js",
"scripts": {
"test": "./node_modules/.bin/coffee test/*-test.coffee",
"bin": "$npm_package_bin_base32"
},
"engines": {
"node": ">0.10"
},
"dependencies": {
"minimist": "^1.2.6"
},
"devDependencies": {
"coffee-script": ">=1.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^3.0.2",
"vows": ">=0.5.6"
}
}