-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 812 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
31
32
33
{
"name": "crypterify",
"version": "0.0.1",
"description": "A browserify transform to encrypt node.js modules and secure them with a password.",
"main": "./build/crypterify.js",
"scripts": {
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/frostwind/crypterify"
},
"keywords": [
"crypterify",
"encrypt",
"encrypt module"
],
"author": "frostwind <hi@frostwind.me> (http://www.frostwind.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/frostwind/crypterify/issues"
},
"homepage": "https://github.com/frostwind/crypterify",
"devDependencies": {
"coffee-script": "^1.8.0",
"gulp": "^3.8.9",
"gulp-coffee": "^2.2.0"
},
"dependencies": {
"blowfish": "^1.0.1",
"through2": "^0.5.1"
}
}