-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 876 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
{
"name": "emiflake",
"description": "A utility library for creating a service that generates unique IDs at scale. Think of it as containing the common logic of Twitter's Snowflake and Boundary's Flake.",
"version": "1.1.1",
"url": "http://github.com/pereckerdal/emiflake",
"author": "Per Eckerdal <[email protected]>",
"license": "MIT",
"maintainers": [
{
"name": "Alex Gorbatchev",
"url": "https://github.com/alexgorbatchev"
}
],
"keywords": [
"id",
"generation",
"distributed",
"flake"
],
"repository": {
"type": "git",
"url": "https://github.com/pereckerdal/emiflake.git"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"preinstall": "node-gyp configure build",
"test": "mocha"
},
"main": "./src/emiflake",
"devDependencies": {
"chai": ">=1.9.0",
"mocha": ">=1.17.1"
}
}