-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.27 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
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
87
88
{
"name": "add-dist-header",
"version": "1.4.3",
"description": "Prepend a one-line banner comment (with license notice) to distribution files",
"license": "MIT",
"type": "module",
"module": "dist/add-dist-header.js",
"types": "dist/add-dist-header.d.ts",
"exports": "./dist/add-dist-header.js",
"files": [
"dist"
],
"bin": {
"add-dist-header": "bin/cli.js",
"dist-header": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/add-dist-header.git"
},
"homepage": "https://github.com/center-key/add-dist-header",
"bugs": "https://github.com/center-key/add-dist-header/issues",
"docs": "https://github.com/center-key/add-dist-header#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"banner",
"directory",
"dist",
"distribution",
"file",
"folder",
"header",
"prepend"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"node": true,
"mocha": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist spec/fixtures/target"
],
"build": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0",
"tsc"
],
"dist": [
"copy-file build/add-dist-header.js --folder dist",
"node bin/cli.js --no-version build dist",
"html-validator spec"
]
},
"scripts": {
"pretest": "run-scripts clean build dist",
"test": "mocha spec/*.spec.js"
},
"dependencies": {
"chalk": "~5.3",
"cli-argv-util": "~1.2",
"fancy-log": "~2.0",
"glob": "~11.0",
"istextorbinary": "~9.5",
"slash": "~5.1"
},
"devDependencies": {
"@eslint/js": "~9.9",
"@types/fancy-log": "~2.0",
"@types/node": "~22.2",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~9.9",
"jshint": "~2.13",
"mocha": "~10.7",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.5",
"typescript-eslint": "~8.0",
"w3c-html-validator": "~1.8"
}
}