-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1009 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
39
40
41
42
{
"name": "@sibevin/random-token",
"version": "2.0.3",
"description": "A simple way to generate a random token.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"lint": "eslint .",
"build": "tsc && tsc -d",
"coverage": "vitest run --coverage",
"doc": "typedoc --entryPoints ./src/index.ts"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sibevin/random-token.js.git"
},
"keywords": [
"random",
"random-token",
"token",
"uid"
],
"author": "Kait Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/sibevin/random-token.js/issues"
},
"homepage": "https://github.com/sibevin/random-token.js#readme",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint": "^8.57.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vitest": "^1.6.0"
}
}