forked from theinternetfolks/snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
43
44
{
"name": "@theinternetfolks/snowflake",
"version": "1.3.0",
"description": "Library to help you create a Snowflake Id or parse the same.",
"main": "dist/index.js",
"scripts": {
"build": "yarn compile && yarn build:map",
"compile": "tsc",
"build:map": "tsc -d --declarationDir ./dist --declarationMap --emitDeclarationOnly",
"test": "mocha --ignore 'node_modules/**/*' -r ts-node/register --recursive --exit tests/*.ts",
"test-coverage": "c8 yarn test && c8 report -r html"
},
"author": "Sameer Khan <[email protected]>",
"organization": "The Internet Folks",
"repository": "https://github.com/theinternetfolks/snowflake",
"files": [
"dist",
"src",
"LICENSE",
"package.json",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"c8": "^7.10.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"snowflake",
"objectid",
"unique",
"identifier",
"twitter snowflake"
]
}