-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.92 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.92 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
{
"name": "bare-bundle-transform",
"version": "1.0.1",
"description": "File transformations for bare-bundle",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run test:build-project && npm run test:build-bundles && bare test/bare.js",
"test:build-project": "cd test/project && npm install",
"test:build-bundles": "mkdir -p test/bundles && npm run test:build-default-bundle && npm run test:build-babel-bundle && npm run test:build-local-babel-bundle",
"test:build-default-bundle": "cd test/project && bare-pack app.js -o ../bundles/default.bundle",
"test:build-babel-bundle": "cd test/project && bare-pack app.js | ../../bin.js --plugin bare-bundle-transform-plugin-babel -o ../bundles/babel.bundle",
"test:build-local-babel-bundle": "cd test/project && bare-pack app.js | ../../bin.js --plugin ../plugins/babel.js -o ../bundles/local-babel.bundle",
"lint": "prettier . --check"
},
"author": "Didericis",
"license": "Apache-2.0",
"prettier": "prettier-config-standard",
"repository": "github:didericis/bare-bundle-transform",
"bin": {
"bare-bundle-transform": "bin.js"
},
"imports": {
"child_process": {
"bare": "bare-subprocess",
"default": "node:child_process"
},
"path": {
"bare": "bare-path",
"default": "node:path"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "refactor",
"breaking": true,
"release": "major"
},
{
"type": "refactor",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"MANUAL RELEASE"
]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
},
"branches": [
"main"
],
"devDependencies": {
"@babel/core": "^7.28.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"bare-pack": "^1.4.5",
"brittle": "^3.18.3",
"prettier": "^3.6.2",
"prettier-config-standard": "^7.0.0"
},
"dependencies": {
"bare-bundle": "^1.9.0",
"paparam": "^1.8.5"
}
}