-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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": "uuidjs",
"version": "5.1.0",
"title": "UUID.js",
"description": "RFC-compliant UUID Generator for JavaScript",
"type": "module",
"main": "dist/uuid.js",
"exports": "./dist/uuid.js",
"types": "./dist/uuid.d.ts",
"bin": {
"uuidjs": "./dist/cli.js"
},
"files": [
"CHANGELOG.md",
"dist",
"example.js"
],
"sideEffects": false,
"runkitExampleFilename": "example.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"doc": "rm -rf ./docs && typedoc ./src/uuid.ts --gitRevision \"v$npm_package_version\"",
"prepare": "npm run build && npm run test && npm run doc",
"test": "qunit ./test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LiosK/UUID.js.git"
},
"keywords": [
"library",
"uuid",
"guid",
"rfc9562",
"rfc4122",
"universally",
"globally",
"unique",
"identifier"
],
"author": "LiosK <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LiosK/UUID.js/issues"
},
"homepage": "https://github.com/LiosK/UUID.js",
"devDependencies": {
"qunit": "^2.20.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}