-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 992 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 992 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
34
35
36
37
38
39
{
"name": "keygen",
"version": "0.4.0",
"description": "url-friendly, random, unique key/token generation",
"keywords": [
"token",
"key",
"random",
"unique"
],
"homepage": "https://github.com/bitbutcher/keygen",
"bugs": "https://github.com/bitbutcher/keygen/issues",
"repository": {
"type": "git",
"url": "https://github.com/bitbutcher/keygen.git"
},
"author": "Sean M. Duncan <bitbutcher@gmail.com>",
"contributors": [
"John E. Bailey <john@devmode.com> (http://devmode.com/who)"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"clean": "grunt clean",
"dist": "grunt dist",
"test": "grunt test",
"coverage": "grunt coverage"
},
"devDependencies": {
"blanket": "^1.2.3",
"coffee-script": "^1.12.7",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^2.0.0"
}
}