-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.22 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
{
"$schema": "http://json.schemastore.org/package.json",
"name": "@userfrosting/browserify-dependencies",
"version": "4.0.1",
"description": "Run browserify against all dependencies defined in package.json",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"compile": "rm -rf ./dist && tsc",
"pretest": "npm run compile && api-extractor run --local",
"test": "c8 --all --reporter=text --reporter=lcovonly ava -T 2m",
"prepublishOnly": "npm run compile",
"preversion": "npm test",
"version": "npm run version:apiDocRefresh && npm run version:changelogBump",
"postversion": "git push && git push --tags",
"version:changelogBump": "changelog-updater && git add CHANGELOG.md",
"version:apiDocRefresh": "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://github.com/Silic0nS0ldier)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/browserify-dependencies"
},
"bugs": {
"url": "https://github.com/userfrosting/browserify-dependencies/issues"
},
"dependencies": {
"@jsdevtools/ono": "^7.1.3",
"browserify": "^17.0.0",
"just-extend": "^6.1.1"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.19.14",
"@microsoft/api-extractor": "^7.31.2",
"@types/browserify": "^12.0.37",
"@types/node": "^20.11.25",
"ava": "^6.1.2",
"c8": "^9.1.0",
"changelog-updater": "^2.0.2",
"cspell": "^8.6.0",
"del": "^7.0.0",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true,
"ava": {
"files": [
"dist/**/*.test.js"
]
}
}