-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "build-number-generator",
"description": "Generates a unique build number with a human-readable build time.",
"version": "3.1.0",
"homepage": "https://github.com/prantlf/build-number-generator#readme",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/build-number-generator.git"
},
"bugs": {
"url": "https://github.com/prantlf/build-number-generator/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/build-number-generator/blob/master/LICENSE"
}
],
"engines": {
"node": ">=18"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/index.umd.min.js",
"types": "lib/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./lib/index.d.ts"
},
"bin": {
"buildnumgen": "bin/buildnumgen.js"
},
"files": [
"bin",
"dist",
"lib/index.d.ts"
],
"scripts": {
"prepare": "rollup -c",
"lint": "biome lint *.js bin lib tests && tsc --noEmit tests/types.ts",
"fix": "biome lint --write *.js bin lib tests",
"check": "teru-cjs tests/*.cjs && teru-esm tests/*.js",
"cover": "c8 teru-esm tests/*.js",
"test": "biome lint *.js bin lib tests && tsc --noEmit tests/types.ts && npx buildnumgen && teru-cjs tests/*.cjs && c8 teru-esm tests/*.js"
},
"c8": {
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"build-number-generator": "link:",
"c8": "^11.0.0",
"rollup": "^4.60.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-swc-minify": "^1.3.0",
"sprintf-js": "^1.1.3",
"tehanu": "^1.0.1",
"tehanu-repo-coco": "^1.0.1",
"tehanu-teru": "^1.0.1",
"typescript": "^6.0.3"
},
"keywords": [
"buildnumber",
"build-number",
"build",
"number",
"version",
"generator"
]
}