-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 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
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": "@under_koen/bsm",
"version": "1.11.2",
"description": "BSM (Basic Script Manager) is a useful tool that enables you to create clear and concise scripts without cluttering your `package.json` file.",
"license": "MIT",
"author": "Koen van Staveren <koen@underkoen.nl>",
"homepage": "https://github.com/UnderKoen/bsm#readme",
"repository": {
"type": "git",
"url": "https://github.com/UnderKoen/bsm.git"
},
"bugs": {
"url": "https://github.com/UnderKoen/bsm/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"bsm": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bsm",
"build:dev": "bsm",
"build:prod": "bsm",
"build:watch": "bsm",
"lint": "bsm",
"prettier": "bsm",
"prepublishOnly": "bsm build.prod",
"test": "bsm",
"test:cov": "bsm test.cov"
},
"dependencies": {
"@inquirer/core": "^10.3.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@inquirer/core": "^10.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.1",
"@types/minimist": "^1.2.5",
"@types/node": "^22.13.9",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@under_koen/bsm": "^1.10.1",
"c8": "^10.1.3",
"ci-info": "^4.1.0",
"cpy-cli": "^6.0.0",
"defu": "^6.1.4",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"glob": "^11.0.3",
"globals": "^16.0.0",
"minimist": "^1.2.8",
"mlly": "^1.8.0",
"prettier": "^3.5.3",
"prettier-package-json": "^2.8.0",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.1",
"sinon": "^21.0.0",
"tsx": "^4.20.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"uvu": "^0.5.6"
},
"keywords": [
"script",
"scripting"
]
}