-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
{
"name": "rev-web-assets",
"version": "1.4.1",
"description": "Revision web asset filenames with cache busting content hash fingerprints",
"license": "MIT",
"type": "module",
"module": "dist/rev-web-assets.js",
"types": "dist/rev-web-assets.d.ts",
"exports": "./dist/rev-web-assets.js",
"files": [
"dist"
],
"bin": {
"rev-web-assets": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/rev-web-assets.git"
},
"homepage": "https://github.com/center-key/rev-web-assets",
"bugs": "https://github.com/center-key/rev-web-assets/issues",
"docs": "https://github.com/center-key/rev-web-assets#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"revision"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"browser": true,
"node": true,
"mocha": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist spec/fixtures/target spec/fixtures/target-force"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc",
"add-dist-header build dist"
]
},
"scripts": {
"pretest": "run-scripts clean lint build",
"test": "mocha spec/*.spec.js",
"posttest": "html-validator spec/fixtures"
},
"dependencies": {
"chalk": "~5.3",
"cli-argv-util": "~1.2",
"fancy-log": "~2.0",
"slash": "~5.1"
},
"devDependencies": {
"@eslint/js": "~9.9",
"@types/fancy-log": "~2.0",
"@types/node": "~22.3",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"eslint": "~9.9",
"jshint": "~2.13",
"mocha": "~10.7",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.5",
"typescript-eslint": "~8.1",
"w3c-html-validator": "~1.8"
}
}