-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "@security-alliance/semantic-release-test",
"version": "0.0.0-development",
"description": "Test package",
"keywords": [
"security-alliance",
"test"
],
"homepage": "https://github.com/security-alliance/semantic-release-test",
"bugs": {
"url": "https://github.com/security-alliance/semantic-release-test/issues"
},
"license": "MIT",
"author": "Security Alliance",
"type": "module",
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js"
},
"repository": "github:security-alliance/semantic-release-test",
"scripts": {
"build": "rm -rf dist/; tsc",
"test": "mocha",
"prepublishOnly": "pnpm run build",
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,json,yml,yaml}\""
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@types/node": "^24.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"mocha": "^11.7.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}