-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.82 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "gulp-rev-all",
"version": "5.1.0",
"description": "Static asset revisioning by appending content hash to filenames: unicorn.css => unicorn.098f6bcd.css, also re-writes references in each file to new reved name.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist-cjs",
"README.md",
"LICENSE"
],
"dependencies": {
"fancy-log": "^2.0.0",
"isbinaryfile": "^5.0.7",
"plugin-error": "^2.0.1",
"vinyl": "^3.0.1"
},
"devDependencies": {
"@test-station/cli": "^0.2.33",
"@biomejs/biome": "^2.4.13",
"@types/event-stream": "^4.0.6",
"@types/fancy-log": "^2.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/vinyl": "^2.0.12",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"mocha": "^11.7.5",
"should": "^13.2.3",
"typescript": "^5.9.3"
},
"scripts": {
"test": "npm run test:unit && npm run lint",
"lint": "biome lint .",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && node scripts/prepare-dual-build.mjs",
"prepack": "npm run build",
"pretest:unit": "npm run build",
"test:unit": "mocha test.js",
"test:station": "test-station run --config ./test-station.config.mjs",
"test:station:inspect": "test-station inspect --config ./test-station.config.mjs",
"test:publish": "node ./scripts/publish-test-station-report.mjs --input ./artifacts/workspace-tests/report.json --project-key gulp-rev-all",
"docs:stage": "node ./scripts/docs/stage-readme-docs.mjs",
"docs:check": "node ./scripts/docs/check-docs.mjs",
"docs:build": "bash ./scripts/docs/build-public.sh"
},
"overrides": {
"gulp-cli": "^3.1.0",
"glob-watcher": "^6.0.0",
"glob-stream": "^8.0.3",
"picomatch": "^2.3.2",
"brace-expansion": "^5.0.5",
"minimatch": "^10.2.4",
"serialize-javascript": "^7.0.5",
"mocha": {
"diff": "^8.0.3",
"glob": "^11.0.3",
"minimatch": "^10.2.4"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/smysnk/gulp-rev-all.git"
},
"keywords": [
"gulp-rev",
"gulp-rev-all",
"gulpplugin",
"rev",
"all",
"revision",
"hash",
"optimize",
"version",
"versioning",
"cache",
"expire",
"static",
"asset",
"assets",
"aws",
"s3",
"cloudfront",
"cdn"
],
"homepage": "https://smysnk.com/projects/gulp-rev-all/docs/",
"author": "Joshua Bellamy <github@smysnk.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smysnk/gulp-rev-all/issues"
},
"engines": {
"node": ">=18.18"
}
}