forked from dylang/shortid
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.28 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "shortid32",
"version": "0.1.1",
"description": "Amazingly short non-sequential human-friendly unique id generator.",
"main": "lib/index.js",
"scripts": {
"test": "grunt test"
},
"keywords": [
"short",
"tiny",
"id",
"uuid",
"bitly",
"shorten",
"mongoid",
"shortid",
"tinyid"
],
"homepage": "https://github.com/billinghamj/shortid32",
"author": "Dylan Greene",
"contributors": [
"James Billingham <james@jamesbillingham.com> (http://jamesbillingham.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/billinghamj/shortid32.git"
},
"browser": {
"./lib/util/cluster-worker-id.js": "./lib/util/cluster-worker-id-browser.js",
"./lib/random/random-byte.js": "./lib/random/random-byte-browser.js"
},
"devDependencies": {
"chai": "^2.2.0",
"envify": "^3.4.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.6.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-uglify": "^0.8.1",
"grunt-mocha-test": "^0.12.7",
"grunt-notify": "^0.4.1",
"grunt-open": "^0.2.3",
"grunt-release": "^0.12.0",
"load-grunt-tasks": "^3.1.0",
"mocha": "^2.2.1",
"time-grunt": "^1.1.0"
},
"license": "MIT"
}