-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "snowflake-id",
"version": "1.1.0",
"description": "Time based 64-bit unique id generator, inspired by Twitter snowflakes",
"main": "lib/snowflake-id.js",
"module": "src/snowflake-id.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"uglify-js": "^3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thetetrabyte/snowflake-id.git"
},
"keywords": [
"snowflake",
"flake",
"unique",
"id",
"generator",
"64-bit",
"id",
"generator"
],
"author": "Dustin Rouillard <byte@tetranite.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thetetrabyte/snowflake-id/issues"
},
"homepage": "https://github.com/thetetrabyte/snowflake-id#readme",
"dependencies": {
"babel-runtime": "^6.26.0"
}
}