-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 935 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
37
38
{
"name": "snowflakeid-producer",
"version": "0.0.0-development",
"description": "A simple and fast unique id generator for node.js. It generates unique id based on twitter's snowflake algorithm.",
"main": "index.js",
"scripts": {
"test": "npm run test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rathijitpapon/snowflakeid.git"
},
"keywords": [
"snowflakeid-producer",
"snowflakeid",
"snowflake",
"unique-id",
"unique",
"id",
"unique-id-generator",
"flake",
"flake-id",
"generator"
],
"author": "Rathijit Paul",
"license": "MIT",
"bugs": {
"url": "https://github.com/rathijitpapon/snowflakeid/issues"
},
"homepage": "https://github.com/rathijitpapon/snowflakeid#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"semantic-release": "^24.2.0"
}
}