-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
45
{
"name": "short-uuid",
"version": "6.0.3",
"description": "Create and translate standard UUIDs with shorter formats.",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "tsc && npx tape test/**/*.js"
},
"engines": {
"node": ">=14.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oculus42/short-uuid.git"
},
"keywords": [
"uuid",
"guid",
"uid",
"node"
],
"author": "Samuel Rouse",
"license": "MIT",
"bugs": {
"url": "https://github.com/oculus42/short-uuid/issues"
},
"homepage": "https://github.com/oculus42/short-uuid#readme",
"dependencies": {
"any-base": "^1.1.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.8",
"@types/any-base": "^1.1.3",
"@types/node": "^22.13.10",
"nyc": "^15.1.0",
"oxlint": "^0.16.0",
"tape": "^5.2.2",
"typescript": "^5.8.2",
"uuid25": "^0.1.5",
"uuidv7": "^1.0.2"
}
}