-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 973 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
{
"name": "@timbryandev/uuidv4",
"version": "1.0.3",
"description": "Generate UUIDs to V4 spec",
"keywords": [
"uuid",
"v4",
"utilities"
],
"homepage": "https://github.com/timbryandev/uuidv4#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/timbryandev/uuidv4.git"
},
"license": "MIT",
"author": "Tim Bryan <[email protected]> (https://timbryan.dev)",
"main": "lib/index.js",
"scripts": {
"build": "terser --compress --mangle --output lib/uuidv4.js -- src/uuidv4.js ",
"publish": "npm run build && npm publish --access=public",
"js:lint": "standard src",
"js:fix": "standard src --fix",
"test": "jest --coverage",
"tdd": "jest --watch"
},
"bugs": {
"url": "https://github.com/timbryandev/uuidv4/issues"
},
"devDependencies": {
"jest": "^29.1.2",
"standard": "^17.0.0",
"terser": "^5.15.0"
},
"standard": {
"env": [
"node",
"jest"
]
}
}