-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "snowflakey",
"version": "0.2.0",
"description": "❄️ Fast and easy snowflake generation and lookup and token generation",
"author": "Wessel \"wesselgame\" T <[email protected]>",
"main": "dist/lib/snowflakey.js",
"types": "index.d.ts",
"license": "MIT",
"files": [
"LICENSE",
"dist/lib",
"index.d.ts"
],
"bugs": {
"url": "https://www.github.com/PassTheWessel/Snowflakey/issues"
},
"homepage": "https://www.github.com/PassTheWessel/Snowflakey#readme",
"repository": {
"type": "git",
"url": "https://www.github.com/PassTheWessel/Snowflakey"
},
"keywords": [
"snowflake",
"generator",
"accounts",
"lookup",
"lightweight"
],
"scripts": {
"test:snowflake": "cd ./dist/tests && node snowflake.test.js",
"test:token": "cd ./dist/tests && node token.test.js",
"compile": "tsc"
},
"devDependencies": {
"@types/node": "^12.6.8",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"typescript": "^3.5.3"
},
"dependencies": {}
}