-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
41
42
{
"name": "flakeid53",
"displayName": "Snowflake ID inspired distributed ID generator that fit into 53bits number.",
"version": "1.0.5",
"type": "module",
"main": "./index.cjs",
"exports": {
".": {
"require": "./index.cjs",
"default": "./index.js"
}
},
"module": "./index.js",
"author": "Adrian Dimitrov <dimitrov.adrian+gh@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/dimitrov-adrian/flakeid53",
"repository": {
"type": "git",
"url": "https://github.com/dimitrov-adrian/flakeid53.git"
},
"bugs": {
"url": "https://github.com/dimitrov-adrian/flakeid53/issues"
},
"keywords": [
"snowflake",
"distributed id",
"flakeid",
"id"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "npx rollup --exports 'default' --format 'cjs' --file 'index.cjs' 'index.js'",
"prepublishOnly": "npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"devDependencies": {
"jest": "^27.2.0",
"rollup": "^2.58.0"
}
}