-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 862 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
38
39
40
{
"name": "url-crypt",
"version": "1.2.1",
"description": "json -> compressed encrypted url-safe base64 strings.",
"main": "index.js",
"scripts": {
"test": "mocha index.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vallettea/url-crypt.git"
},
"keywords": [
"base64",
"crypt",
"compress",
"urlsafe",
"verification",
"registration",
"encrypt",
"decrypt"
],
"author": "Michael Cole",
"license": "MIT",
"bugs": {
"url": "https://github.com/vallettea/url-crypt/issues"
},
"homepage": "https://github.com/vallettea/url-crypt",
"devDependencies": {
"chai": "^2.0.0",
"express": "^4.11.2",
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.2",
"jshint-stylish": "^1.0.0",
"mocha": "^2.1.0"
},
"dependencies": {
"urlsafe-base64": "^1.0.0"
}
}