-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.48 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.48 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hailstone",
"longName": "hailstone",
"description": "A simple, lightweight, stateless utility for generating quasi-unique, variable length identifiers with embedded type information.",
"author:": "Daniel Fields",
"main": "index",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsfields/hailstone.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dsfields/hailstone/blob/master/LICENSE"
}
],
"version": "0.1.0",
"keywords": [
"id",
"identifier",
"entity",
"entityid",
"unique",
"object",
"objectid",
"random",
"global",
"snowflake",
"snow",
"flake",
"embedded",
"type",
"hailstone",
"domain"
],
"dependencies": {
"bignum": "^0.9.2",
"bluebird": "^2.0.0",
"lodash": "^3.6.0"
},
"devDependencies": {
"chai": "1.10.0",
"coffee-script": "^1.8.0",
"del": "^1.1.1",
"gulp": "~3.8.11",
"gulp-coffee": "~2.2.0",
"gulp-coffeelint": "^0.4.0",
"gulp-eslint": "^0.8.0",
"gulp-mocha": "~2.0.0",
"gulp-sourcemaps": "1.3.0",
"gulp-util": "~3.0.2",
"mocha": "^2.1.0",
"node-inspector": "^0.8.3",
"run-sequence": "^1.0.2"
},
"engines": {
"node": ">=0.6.0"
},
"bugs": {
"url": "https://github.com/dsfields/hailstone/issues"
},
"homepage": "https://github.com/dsfields/hailstone",
"directories": {
"test": "tests"
},
"scripts": {
"test": "gulp test"
}
}