forked from dowjones/gulp-bundle-assets
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.73 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
{
"name": "@userfrosting/gulp-bundle-assets",
"version": "5.0.3",
"description": "Orchestrates JS and CSS bundle creation in an efficient and configurable manner.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"compile": "del-cli ./dist && tsc && pnpm run api-report-refresh && pnpm run api-doc-refresh",
"test": "c8 --all --reporter=text --reporter=lcovonly ava",
"prepublishOnly": "pnpm run compile",
"stamp-version": "pnpm run compile && changelog-updater",
"api-report-refresh": "api-extractor run --local",
"api-doc-refresh": "api-extractor run && api-documenter markdown -i ./temp -o ./docs/api && git add ./docs/api/*",
"release-readiness": "npm run release-readiness:cspell && npm run release-readiness:api-changes",
"release-readiness:cspell": "cspell 'src/**' 'dist/**' 'docs/**' '*'",
"release-readiness:api-changes": "npm run compile && api-extractor run"
},
"author": "Jordan Mele <[email protected]> (https://djmm.me/)",
"contributors": [
"Chris Montgomery (http://www.chrismontgomery.info/)",
"Christian Sherland (https://github.com/csherland)",
"Roberto Soares (https://github.com/roberto)",
"bas (https://github.com/21brains-zh)",
"gregorymaertens (https://github.com/gregorymaertens)",
"narthollis (https://github.com/narthollis)",
"PlasmaPower (https://github.com/PlasmaPower)",
"jcarrivick-adapt (https://github.com/jcarrivick-adapt)"
],
"license": "MIT",
"keywords": [
"gulpplugin",
"bundle",
"bundling",
"javascript",
"js",
"css"
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/gulp-uf-bundle-assets"
},
"bugs": {
"url": "https://github.com/userfrosting/gulp-uf-bundle-assets/issues"
},
"dependencies": {
"just-extend": "^6.2.0",
"plugin-error": "^2.0.1",
"ts-log": "^2.2.5",
"vinyl": "^3.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.22.21",
"@microsoft/api-extractor": "^7.36.0",
"@types/node": "^22.0.0",
"@types/vinyl": "^2.0.7",
"@userfrosting/ts-log-adapter-ava": "^0.1.1",
"ava": "^6.1.2",
"c8": "^10.1.2",
"changelog-updater": "^2.0.3",
"cspell": "^8.3.2",
"del-cli": "^6.0.0",
"p-defer": "^4.0.0",
"sort-on": "^6.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"ava": {
"files": [
"dist/**/*.test.js"
]
}
}