-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.03 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.03 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
{
"name": "flocon",
"version": "0.0.3",
"author": "Yosee <opensource@yosee.com>",
"description": "64-bits Unique ID generator for Node.js written in C++",
"keywords": [
"unique",
"id",
"uuid",
"uid",
"shard",
"database",
"db",
"snowflake"
],
"contributors": [
{
"name": "Antoine Marcadet",
"email": "antoine.marcadet@gmail.com"
},
{
"name": "Julien Seren-Rosso",
"email": "j.serenrosso@gmail.com"
}
],
"dependencies": {
},
"devDependencies": {
"mocha": "~1.12.0",
"should": "~1.2.2",
"long": "~1.1.2",
"bignum": "~0.6.2",
"bigint": "~0.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Yosee/flocon.git"
},
"bugs": {
"url": "https://github.com/Yosee/flocon/issues"
},
"config": {
"native": false
},
"main": "lib/index.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"install": "(node-gyp rebuild 2> builderror.log) || (exit 0)",
"test": "make test"
},
"license": "MIT"
}