-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.2 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
53
54
55
56
57
58
59
{
"name": "bannerjs",
"version": "3.0.2",
"description": "Get one-line/multi-line comment banner based on package.json.",
"homepage": "https://jaywcjlove.github.io/bannerjs/",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"bin": {
"bannerjs": "./bin/cli.js"
},
"author": "kenny wang <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "node lib/index.js",
"watch": "tsbb watch",
"build": "tsbb build",
"test": "tsbb test",
"coverage": "tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/bannerjs.git"
},
"bugs": {
"url": "https://github.com/jaywcjlove/bannerjs/issues"
},
"files": [
"bin",
"src",
"lib"
],
"engines": {
"node": ">=14.16"
},
"keywords": [
"comment",
"banner",
"bannerjs",
"header",
"license",
"generator",
"package.json"
],
"jest": {
"coverageReporters": [
"lcov",
"json-summary"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"devDependencies": {
"types-package-json": "^2.0.39",
"tsbb": "^4.1.5"
}
}