-
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.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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": "@workiva/semver-audit",
"version": "1.0.0",
"description": "diffs semver audit index files and provides the aggregate summary of the results in the form of a suggested semver label",
"license": "Apache-2.0",
"bin": {
"semver-audit": "./dist/cli.js",
"semver-audit.bun": "./dist/cli-bun.js"
},
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "bun run build:bun && bun run build:node",
"build:node": "bun build --target=node ./src/cli.ts --outfile ./dist/cli.js",
"build:bun": "bun build --target=bun ./src/cli.ts --outfile ./dist/cli-bun.js",
"dev": "bun run ./src/cli.ts",
"test": "vitest run --exclude indexers",
"test:functional": "./test/functional/dart/run.sh && ./test/functional/go/run.sh && ./test/functional/typescript/run.sh",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/diff": "^8.0.0",
"@types/node": "^25.0.9",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"dependencies": {
"@streamparser/json": "^0.0.22",
"@streamparser/json-node": "^0.0.22",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dequal": "^2.0.3",
"diff": "^8.0.3",
"globby": "^16.0.0"
}
}