-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
45
46
47
48
49
50
51
52
{
"name": "@alizeait/uuid",
"version": "2.0.3",
"description": "A fast and tiny RFC compliant uuid v4 generator",
"scripts": {
"test": "npx jest",
"build": "tsup --clean --sourcemap --minify && tsc"
},
"main": "./dist/node/index.js",
"module": "./dist/browser/index.mjs",
"types": "./dist/browser/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alizeait/uuid.git"
},
"files": [
"dist"
],
"keywords": [
"uuid",
"Universally unique identifier",
"RFC",
"secure",
"fast",
"tiny",
"crypto",
"random",
"node",
"browser"
],
"author": {
"name": "Ali Zeaiter",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alizeait/uuid/issues"
},
"homepage": "https://github.com/alizeait/uuid#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"benchmark": "^2.1.4",
"codecov": "^3.8.1",
"is-uuid": "^1.0.2",
"jest": "^26.6.3",
"nanoid": "^3.1.20",
"ts-jest": "^26.4.4",
"tsup": "^6.1.2",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
}
}